forked from PrismJS/prism
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.jsdoc.json
66 lines (66 loc) · 1.13 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
56
57
58
59
60
61
62
63
64
65
66
{
"plugins": [
"plugins/markdown",
"./gulpfile.js/docs.js"
],
"opts": {
"destination": "./docs",
"encoding": "utf8",
"template": "./node_modules/docdash",
"access": [
"public",
"protected"
]
},
"recurseDepth": 10,
"source": {
"includePattern": "\\.js$",
"excludePattern": "\\.min\\.js$"
},
"tags": {
"allowUnknownTags": true,
"dictionaries": [
"jsdoc",
"closure"
]
},
"templates": {
"cleverLinks": true,
"monospaceLinks": true,
"default": {
"includeDate": false
}
},
"docdash": {
"static": true,
"sort": true,
"search": true,
"collapse": false,
"wrap": false,
"typedefs": true,
"private": false,
"scripts": [
"styles/overwrites.css"
],
"openGraph": {
"title": "Prism generated API documentation",
"type": "website",
"image": "/logo.svg",
"site_name": "Prism",
"url": "https://prismjs.com"
},
"menu": {
"PrismJS": {
"href": "https://prismjs.com",
"class": "menu-item",
"id": "website_link"
},
"GitHub": {
"href": "https://github.com/PrismJS/prism",
"target": "_blank",
"class": "menu-item",
"id": "github_link"
}
}
}
}