forked from arnog/mathlive
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjsdoc.conf.json
More file actions
43 lines (43 loc) · 1.51 KB
/
jsdoc.conf.json
File metadata and controls
43 lines (43 loc) · 1.51 KB
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
{
"tags": {
"allowUnknownTags": true,
"dictionaries": ["jsdoc", "closure"]
},
"source": {
"include": "./src/",
"includePattern": ".+\\.js$",
"excludePattern": "^_"
},
"plugins": ["plugins/markdown"],
"templates": {
"cleverLinks": false,
"monospaceLinks": false,
"linenums": true,
"sourceCodeTheme": "dark",
"sourceCodeBackground": "#35434e",
"includeDate": false,
"title": "MathLive Docs",
"pageTitle": "MathLive Docs",
"description": "Beautifully typeset math made easy",
"keywords": "latex, tex, math, typesetting, documentation, docs",
"forkme": "https://github.com/arnog/mathlive",
"headerAddendum": "<link rel=\"stylesheet\" href=\"http://mathlive.io/mathlive/mathlive.core.css\" type=\"text/css\"><link rel=\"stylesheet\" href=\"http://mathlive.io/mathlive/mathlive.css\" type=\"text/css\">",
"bodyAddendum": "<script src=\"http://mathlive.io/mathlive/mathlive.js\"></script><script>if (MathLive) {MathLive.renderMathInDocument();}</script>"
},
"markdown": {
"parser": "gfm",
"hardwrap": false,
"idInHeadings": true
},
"opts": {
"access": "all",
"outputSourceFiles": false,
"template": "node_modules/sutro-jsdoc-theme",
"encoding": "utf8",
"recurse": true,
"destination": "./docs",
"readme": "WELCOME.md",
"sort": false,
"tutorials": "./tutorials"
}
}