UNPKG
hexo-reslink
Version:
latest (1.1.3)
1.1.3
1.1.2
1.1.1
1.1.0
1.0.1
1.0.0
Automatically create resource links
github.com/Arylo/hexo-reslink
Arylo/hexo-reslink
hexo-reslink
/
index.js
9 lines
(5 loc)
•
187 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
const
transform = require(
"./dist/lib/transform"
); hexo.extend.filter.register(
'before_post_render'
, function (
data
) {
data
.content = transform(
data
.content);
return
data
; });