UNPKG
hexo-tag-plugins
Version:
latest (1.0.5)
1.0.5
1.0.4
1.0.3
1.0.1
1.0.0
A number of tag plugins for theme-butterfly
hexo-tag-plugins
/
lib
/
scripts
/
iconfont.js
11 lines
(8 loc)
•
295 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
'use strict'
;
function
iconFont
(
args
) { args = args.
join
(
' '
).
split
(
','
)
let
p0 = args[
0
]
let
p1 = args[
1
]?args[
1
]:
1
return
`<svg class="icon" style="width:
${p1}
em; height:
${p1}
em" aria-hidden="true"><use xlink:href="#
${p0}
"></use></svg>`
; } hexo.
extend
.
tag
.
register
(
'icon'
,iconFont);