-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsdoc.json
55 lines (55 loc) · 1.51 KB
/
jsdoc.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
{
"source": {
"include": [".", "README.md"],
"exclude": ["node_modules", "docs"],
"includePattern": ".+\\.js?$"
},
"opts": {
"recurse": true,
"destination": "./docs",
"template": "node_modules/clean-jsdoc-theme",
"tutorials": "./tutorials",
"theme_opts": {
"default_theme": "dark",
"homepageTitle": "TidyHQ-Node Documentation",
"sections": ["Classes", "Global", "Tutorials"],
"include_css": ["./assets/index.css"],
"footer": "Made with ❤︎ by Sean McGinty",
"menu": [
{
"title": "Home",
"link": "https://s3ansh33p.github.io/TidyHQ-Node"
},
{
"title": "GitHub",
"link": "https://github.com/s3ansh33p/TidyHQ-Node",
"target": "_blank"
},
{
"title": "TidyHQ V1 API",
"link": "https://dev.tidyhq.com",
"target": "_blank"
},
{
"title": "TidyHQ V2 API",
"link": "https://tidyhq.readme.io",
"target": "_blank"
}
],
"meta": [
{
"name": "author",
"content": "Sean McGinty"
},
{
"name": "description",
"content": "Node.js module to interact with the TidyHQ API"
}
]
}
},
"markdown": {
"hardwrap": false,
"idInHeadings": true
}
}