UNPKG
gitbook-plugin
Version:
latest (0.0.2)
pre (4.0.0-alpha.6)
4.0.0-alpha.6
4.0.0-alpha.5
4.0.0-alpha.4
4.0.0-alpha.3
4.0.0-alpha.2
4.0.0-alpha.1
0.0.2
0.0.1
Sample plugin for GitBook
github.com/GitbookIO/gitbook-plugin
GitbookIO/gitbook-plugin
gitbook-plugin
/
index.js
19 lines
•
327 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module
.
exports
= {
book
: {
assets
:
"./book"
,
js
: [
"test.js"
],
css
: [
"test.css"
] },
hooks
: {
init
:
function
(
) {
console
.
log
(
"init!"
); },
finish
:
function
(
) {
console
.
log
(
"finish!"
); } } };