-
Notifications
You must be signed in to change notification settings - Fork 195
/
jsdoc.conf.json
72 lines (72 loc) · 2.3 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
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
},
"plugins": [
"plugins/markdown",
"../../node_modules/better-docs/typescript",
"../../node_modules/better-docs/category"
],
"recurseDepth": 10,
"source": {
"includePattern": "\\.(jsx|js|ts|tsx)$"
},
"templates": {
"search": true,
"cleverLinks": true,
"monospaceLinks": false,
"footer": "",
"copyright":"3Dmol.js © 2019-2024",
"linenums" : true,
"collapseSymbols" : false,
"inverseNav" : true,
"highlightTutorialCode" : true
},
"markdown" : {
"hardwrap": true,
"idInHeadings": true
},
"opts":{
"encoding": "utf8",
"destination": "doc/",
"recurse": true,
"verbose": true,
"template": "./node_modules/clean-jsdoc-theme",
"copyright": "3Dmol.js © 2019-2023",
"theme_opts": {
"default_theme": "light",
"includeFilesListInHomepage": true,
"homepageTitle": "3Dmol.js",
"displayModuleHeader": true,
"footer":"3Dmol.js © 2019-2024 | <a href='https://pitt.edu/' target='_blank'>University of Pittsburgh</a> | <a href='https://github.com/3dmol/3Dmol.js/blob/master/LICENSE' target='_blank'>License</a>",
"title": "3Dmol.js",
"create_style": "article ul li { list-style: disc}",
"menu": [
{
"title": " Documentation",
"link": "https://3dmol.org/doc/index.html"
},
{
"title": "Tutorials",
"link": "tutorial-home.html"
},
{
"title": "GitHub",
"link": "https://github.com/3dmol/3Dmol.js",
"target": "_blank"
}
],
"meta": [
{
"name": "Author",
"content": "David Koes & 3Dmoljs Contributors"
},
{
"name": "Description",
"content": "A modern, object-oriented JavaScript library for visualizing molecular data"
}
]
},
"tutorials": "tutorials/"
}
}