forked from koalanlp/nodejs-support
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.jsdoc.json
More file actions
67 lines (67 loc) · 1.46 KB
/
.jsdoc.json
File metadata and controls
67 lines (67 loc) · 1.46 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"plugins": [
"plugins/markdown"
],
"sourceType": "module",
"source": {
"include": ["src/", "README.md"],
"exclude": ["src/jvm.js"]
},
"tags": {
"allowUnknownTags": true,
"dictionaries": ["jsdoc","closure"]
},
"templates": {
"cleverLinks": false,
"monospaceLinks": true
},
"opts": {
"template": "node_modules/docdash",
"encoding": "utf8",
"destination": "docs/",
"recurse": true,
"verbose": true
},
"docdash": {
"sort": false,
"sectionOrder": [
"Modules",
"Classes",
"Externals",
"Events",
"Namespaces",
"Mixins",
"Tutorials",
"Interfaces"
],
"search": true,
"collapse": true,
"typedefs": false,
"menu": {
"사용법 안내": {
"href": "https://koalanlp.github.io/koalanlp/usage",
"target":"_blank",
"class":"menu-item",
"id":"website_link"
},
"참고: Java/Kotlin API": {
"href": "https://koalanlp.github.io/koalanlp",
"target":"_blank",
"class":"menu-item",
"id":"website_link"
},
"참고: Scala API": {
"href": "https://koalanlp.github.io/scala-support",
"target":"_blank",
"class":"menu-item",
"id":"website_link"
},
"참고: Python3 API": {
"href": "https://koalanlp.github.io/python-support",
"target":"_blank",
"class":"menu-item",
"id":"website_link"
}
}
}
}