UNPKG
njsbtguide
Version:
latest (1.1.0)
1.1.0
Playground
njsbtguide
/
tags
/
pdf.js
14 lines
(9 loc)
•
258 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** * pdf.js | https://theme-next.org/docs/tag-plugins/pdf */
/* global hexo */
'use strict'
;
function
pdf
(
args
) {
return
`<div class="pdf" target="
${args[
0
]}
" height="
${args[
1
] ||
''
}
"></div>`
; } hexo.
extend
.
tag
.
register
(
'pdf'
, pdf, {
ends
:
false
});