-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
88 lines (88 loc) · 2.35 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "gitbook-plugin-anchor-navigation-ex",
"version": "1.0.14",
"description": "Supports two navigation mode, title, anchor effect is the default theme, style, follow the website",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zq99299/gitbook-plugin-anchor-navigation-ex.git"
},
"keywords": [
"gitbook",
"plugin",
"anchor-navigation-ex",
"ex"
],
"author": "zhuqiang,yuan1994",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/zq99299/gitbook-plugin-anchor-navigation-ex/issues"
},
"homepage": "https://github.com/zq99299/gitbook-plugin-anchor-navigation-ex#readme",
"dependencies": {
"cheerio": "*",
"github-slugid": "1.0.1",
"colors": "^1.1.2"
},
"engines": {
"gitbook": ">=3.0.0"
},
"gitbook": {
"properties": {
"showLevel": {
"type": "boolean",
"default": true,
"title": "是否为标题增加锚点效果并显示序号"
},
"associatedWithSummary": {
"type": "boolean",
"default": true,
"title": "是否与官方默认主题summary目录生成的序号相关联"
},
"mode": {
"type": "string",
"default": "float",
"title": "导航模式"
},
"showGoTop": {
"type": "boolean",
"default": true,
"title": "是否显示返回顶部按钮"
},
"printLog":{
"type": "boolean",
"default": false,
"title": "是否打印处理进度日志,方便排错"
},
"multipleH1":{
"type": "boolean",
"default": true,
"title": "false:去掉每页开头H1标题被重写成1. xxx(如果您的md文档遵循一个md文件只有一个H1标题的话)"
},
"float": {
"type": "object",
"default": {
"floatIcon": "fa fa-navicon",
"showLevelIcon": false,
"level1Icon": "",
"level2Icon": "",
"level3Icon": ""
},
"title": "浮动右侧导航模式"
},
"pageTop": {
"type": "object",
"default": {
"showLevelIcon": false,
"level1Icon": "",
"level2Icon": "",
"level3Icon": ""
},
"title": "页内顶部导航模式"
}
}
}
}