UNPKG
hexo-theme-kratos-rebirth
Version:
latest (3.0.1)
next (3.0.0-rc.0)
3.0.1
3.0.0
3.0.0-rc.0
3.0.0-beta.2
3.0.0-beta.1
3.0.0-beta.0
3.0.0-alpha.3
3.0.0-alpha.2
3.0.0-alpha.1
3.0.0-alpha.0
2.2.0
2.1.5
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
2.0.3
2.0.2
2.0.1
2.0.0
A lovely yet modern theme for Hexo.
github.com/Candinya/Kratos-Rebirth
Candinya/Kratos-Rebirth
hexo-theme-kratos-rebirth
/
scripts
/
icon-to-html.js
6 lines
(5 loc)
•
168 B
JavaScript
View Raw
1
2
3
4
5
6
hexo.
extend
.
helper
.
register
(
"icon_to_html"
,
(
input
) =>
input.
includes
(
"<"
) ? input
// HTML 裸标签
:
`<i class="fa fa-
${input}
"></i>`
,
// FontAwesome ID
);