-
Notifications
You must be signed in to change notification settings - Fork 3
/
jsdoc-conf.json
42 lines (42 loc) · 1.12 KB
/
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
42
{
"opts": {
"template": "node_modules/ink-docstrap/template",
"encoding": "utf8",
"destination": "./doc/",
"recurse": true,
"private": false
},
"tags": {
"allowUnknownTags": true
},
"source": {
"include": ["lib","template"],
"includePattern": ".+\\.js(doc)?$",
"excludePattern": "(^|\\/|\\\\)_"
},
"plugins" : ["plugins/markdown"],
"i18n": {
"locale": "<en_US|tr_TR>",
"extension": ".js"
},
"templates" : {
"cleverLinks" : false,
"monospaceLinks" : false,
"dateFormat" : "ddd MMM Do YYYY",
"outputSourceFiles" : true,
"outputSourcePath" : true,
"systemName" : "sequelize-pg-generator",
"footer" : "",
"copyright" : "sequelize-pg-generator Copyright © 2014 Özüm Eldoğan.",
"navType" : "vertical",
"theme" : "cerulean",
"linenums" : true,
"collapseSymbols" : false,
"inverseNav" : true,
"highlightTutorialCode" : true
},
"markdown" : {
"parser" : "gfm",
"hardwrap" : true
}
}