UNPKG
hexo-talk
Version:
latest (1.1.6)
1.1.6
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.0
Creating a talk component or page in hexo post.
hexo-talk
/
index.js
9 lines
(7 loc)
•
202 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
/* global hexo */
hexo.extend.generator.register(
"talk"
, function (locals) {
if
(!
this
.config.talk.enable) {
return
; }
return
require(
"./lib/TalkGenerator"
).call(
this
, locals); });