Skip to content

Commit 4ff555b

Browse files
Added JSDoc (#1782)
1 parent a375872 commit 4ff555b

38 files changed

+8026
-194
lines changed

.jsdoc.json

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
{
2+
"plugins": [
3+
"plugins/markdown",
4+
"./gulpfile.js/docs.js"
5+
],
6+
"opts": {
7+
"destination": "./docs",
8+
"encoding": "utf8",
9+
"template": "./node_modules/docdash",
10+
"access": [
11+
"public",
12+
"protected"
13+
]
14+
},
15+
"recurseDepth": 10,
16+
"source": {
17+
"includePattern": "\\.js$",
18+
"excludePattern": "\\.min\\.js$"
19+
},
20+
"tags": {
21+
"allowUnknownTags": true,
22+
"dictionaries": [
23+
"jsdoc",
24+
"closure"
25+
]
26+
},
27+
"templates": {
28+
"cleverLinks": true,
29+
"monospaceLinks": true,
30+
"default": {
31+
"includeDate": false
32+
}
33+
},
34+
"docdash": {
35+
"static": true,
36+
"sort": true,
37+
"search": true,
38+
"collapse": false,
39+
"wrap": false,
40+
"typedefs": true,
41+
"private": false,
42+
"scripts": [
43+
"styles/overwrites.css"
44+
],
45+
"openGraph": {
46+
"title": "Prism generated API documentation",
47+
"type": "website",
48+
"image": "/logo.svg",
49+
"site_name": "Prism",
50+
"url": "https://prismjs.com"
51+
},
52+
"menu": {
53+
"PrismJS": {
54+
"href": "https://prismjs.com",
55+
"class": "menu-item",
56+
"id": "website_link"
57+
},
58+
"GitHub": {
59+
"href": "https://github.com/PrismJS/prism",
60+
"target": "_blank",
61+
"class": "menu-item",
62+
"id": "github_link"
63+
}
64+
}
65+
}
66+
}

0 commit comments

Comments
 (0)