-
Notifications
You must be signed in to change notification settings - Fork 3
/
.docma.json
63 lines (63 loc) · 1.36 KB
/
.docma.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
{
"src": [
"./lib/**/*.js",
"./README.md",
"./FAQ.md",
"./CHANGELOG.md"
],
"clean": true,
"dest": "./docs",
"jsdoc": {
"allowUnknownTags": true,
"hierarchy": true,
"recurse": true
},
"markdown": {
"gfm": true,
"tables": true,
"tasks": true,
"emoji": true
},
"app": {
"title": "Mini-service documentation",
"base": "/mini-service",
"server": "github",
"entrance": "content:readme"
},
"template": {
"path": "default",
"options": {
"title": "mini-service",
"sidebar": {
"itemsFolded": true
},
"symbols": {
"params": "table"
},
"navbar": {
"menu": [{
"iconClass": "far fa-compass fa-lg",
"label": "Welcome",
"href": "?content=readme"
}, {
"iconClass": "fas fa-book fa-lg",
"label": "API Reference",
"href": "?api"
}, {
"iconClass": "fas fa-fire fa-lg",
"label": "Changelog",
"href": "?content=changelog"
}, {
"iconClass": "far fa-question-circle fa-lg",
"label": "F.A.Q.",
"href": "?content=faq"
}, {
"iconClass": "fab fa-github fa-lg",
"label": "GitHub",
"href": "https://github.com/feugy/mini-service",
"target": "_blank"
}]
}
}
}
}