forked from epam/miew
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjsdoc.config.js
More file actions
47 lines (47 loc) · 1.41 KB
/
jsdoc.config.js
File metadata and controls
47 lines (47 loc) · 1.41 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
module.exports = {
source: {
include: [
'packages/lib/README.md',
'packages/lib/src/Miew.js',
'packages/lib/src/settings.js',
'packages/lib/src/chem/StructuralElement.js',
'packages/lib/src/chem/Helix.js',
'packages/lib/src/chem/Strand.js',
// 'src/gfx/modes.js',
// 'src/gfx/modes/Mode.js',
// 'src/gfx/colorers.js',
// 'src/gfx/colorers/Colorer.js',
// 'src/gfx/colorers/ElementColorer.js',
'packages/lib/src/io/loaders/LoaderList.js',
'packages/lib/src/io/parsers/ParserList.js',
'packages/lib/src/utils/EntityList.js',
'packages/lib/src/utils/EventDispatcher.js',
'packages/lib/src/utils/logger.js',
'packages/lib/src/io/parsers/PDBStream.js',
'packages/lib/src/io/parsers/GROReader.js',
'packages/lib/src/io/parsers/GROParser.js'
]
},
opts: {
template: 'tools/templates//template',
tutorials: 'tools/templates//tutorials',
destination: 'documentation/',
private: false
},
templates: {
cleverLinks: true,
monospaceLinks: false,
default: {
outputSourceFiles: false,
outputSourcePath: false,
staticFiles: {
include: [
'tools/templates/template/README.png',
'node_modules/jsdoc/templates/default/static',
'tools/templates//template/static'
]
}
}
},
plugins: ['plugins/underscore', 'plugins/markdown']
}