-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
docs.js
45 lines (43 loc) · 881 Bytes
/
docs.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
'use strict'
const Docma = require('docma')
const Package = require('./package')
Docma.create().build({
app: {
title: `${Package.name}: Node.js wrapper for the Speedrun.com API`,
base: '/',
entrance: 'api:node-speedrun',
routing: 'query',
server: Docma.ServerType.STATIC
},
markdown: {
gfm: true,
tables: true,
breaks: false,
pedantic: false,
sanitize: false,
smartLists: false,
smartypants: false,
tasks: false,
emoji: true
},
jsdoc: {
module: false
},
src: [
{ 'node-speedrun': './lib/**/*.js' }
],
dest: './docs',
template: {
options: {
title: Package.name,
navItems: [
{
iconClass: 'fab fa-lg fa-github',
label: 'GitHub',
href: 'https://github.com/SwitchbladeBot/node-speedrun',
target: '_blank'
}
]
}
}
})