forked from ankitskvmdam/clean-jsdoc-theme
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsdoc-config.json
72 lines (72 loc) · 2.44 KB
/
jsdoc-config.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
64
65
66
67
68
69
70
71
72
{
"tags": {
"allowUnknownTags": true
},
"source": {
"include": ["./demo/src", "./README.md"]
},
"plugins": ["plugins/markdown"],
"opts": {
"encoding": "utf8",
"destination": "output/v4",
"recurse": true,
"template": "./",
"tutorials": "./demo/src/tutorials",
"theme_opts": {
"includeFilesListInHomepage": true,
"search": true,
"homepageTitle": "Clean JSDoc Theme",
"default_theme": "dark",
"exclude_inherited": false,
"include_css": ["./demo/src/assets/style.css"],
"include_js": ["./demo/src/assets/script.js"],
"static_dir": ["./demo/src/assets/png", "./example"],
"add_scripts": "function foo(){console.log('foo')} function bar() {console.log('bar')} bar(); foo();",
"create_style": ".test-create-style{ background: red}",
"displayModuleHeader": true,
"title": "clean-jsdoc-theme",
"footer": "<div style='margin-bottom: 0.5rem;'>clean-jsdoc-theme</div> Fork: <a href='https://github.com/ankitskvmdam/clean-jsdoc-theme'>https://github.com/ankitskvmdam/clean-jsdoc-theme</a>",
"meta": [
{
"name": "Author",
"content": "Ankit Kumar"
},
{
"name": "Description",
"content": "A beautifully crafted theme for jsdoc"
}
],
"menu": [
{
"title": "Github",
"id": "github",
"link": "https://github.com/ankitskvmdam/clean-jsdoc-theme"
},
{
"title": "npm",
"id": "npm",
"link": "https://www.npmjs.com/package/clean-jsdoc-theme"
}
],
"codepen": {
"enable_for": ["examples"],
"options": {
"js_external": "https://code.jquery.com/jquery-3.6.0.min.js",
"js_pre_processor": "babel"
}
},
"prefixModuleToSidebarItems_experimental": true
}
},
"templates": {
"default": {
"staticFiles": {
"include": ["./example"]
}
}
},
"markdown": {
"hardwrap": false,
"idInHeadings": true
}
}