-
Notifications
You must be signed in to change notification settings - Fork 8
/
docma.json
52 lines (52 loc) · 1.38 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
{
"src": ["./src/**/*.js", "./*.md"],
"dest": "./docs",
"clean": true,
"assets": {
"/": ["./CNAME"]
},
"jsdoc": {
"recurse": true,
"undocumented": true,
"package": true,
"hierarchy": true,
"module": true,
"allowUnknownTags": true
},
"app": {
"title": "BMW ConnectedDrive API Documentation",
"entrance": "content:readme",
"routing": "query",
"server": "github",
"base": "/"
},
"template": {
"path": "zebra",
"options": {
"title": {
"label": "API",
"href": "/?api"
},
"navbar": {
"menu": [
{
"label": "Docs",
"iconClass": "fas fa-book",
"href": "./"
},
{
"label": "API",
"iconClass": "fas fa-mouse-pointer",
"href": "?api"
},
{
"label": "GitHub",
"iconClass": "fab fa-github",
"href": "https://github.com/mihaiblaga89/bmw-connecteddrive-api",
"target": "_blank"
}
]
}
}
}
}