-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathjsdoc.conf.json
41 lines (41 loc) · 980 Bytes
/
jsdoc.conf.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
{
"tags": {
"allowUnknownTags": true
},
"plugins": ["plugins/markdown"],
"source" : {
"include" : [
"lib/",
"package.json",
"./README.md"
],
"includePattern": ".+\\.js(doc)?$",
"excludePattern": "(^|\\/|\\\\)_"
},
"templates": {
"dateFormat": "ddd MMM Do YYYY",
"cleverLinks": false,
"monospaceLinks": false,
"outputSourceFiles": true,
"systemName" : "MotorHat",
"footer" : "(c) jcane86 2017",
"copyright" : "MotorHat Copyright © 2017 jcane86.",
"navType" : "vertical",
"theme" : "flatly",
"linenums" : true,
"collapseSymbols" : false,
"inverseNav" : true
},
"markdown": {
"parser": "marked",
"hardwrap": true,
"githubRepoName": "motor-hat",
"githubRepoOwner": "jcane86"
},
"opts": {
"destination": "./docs/",
"encoding": "utf8",
"recurse": true,
"template": "./node_modules/namis"
}
}