forked from nhn/tui.editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jsdoc.conf.js
56 lines (55 loc) · 1.2 KB
/
jsdoc.conf.js
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
const {version} = require('./package.json');
module.exports = {
'source': {
'include': [
'src/js',
'README.md'
],
'includePattern': '.+\\.js(doc)?$',
'excludePattern': '(^|\\/|\\\\)_'
},
'plugins': [
'plugins/markdown'
],
'templates': {
'name': 'Editor',
'logo': {
'url': 'https://cloud.githubusercontent.com/assets/389021/16107646/9729e556-33d8-11e6-933f-5b09fa3a53bb.png',
'width': '150px',
'link': 'https://nhnent.github.io/tui.editor/'
},
'cleverLinks': true,
'monospaceLinks': true,
'default': {
'outputSourceFiles': true
},
'applicationName': 'tui-editor',
'disqus': '',
'googleAnalytics': '',
'openGraph': {
'title': '',
'type': 'website',
'image': '',
'site_name': '',
'url': ''
},
'meta': {
'title': '',
'description': '',
'keyword': ''
},
'linenums': false
},
'markdown': {
'parser': 'gfm',
'hardwrap': true
},
'opts': {
'recurse': true,
'name': 'TOAST UI Editor',
'destination': `api/${version}`,
'template': 'node_modules/tui-jsdoc-template',
'tutorials': 'examples',
'package': 'package.json'
}
};