forked from sql-js/sql.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.jsdoc.config.json
38 lines (38 loc) · 1.11 KB
/
.jsdoc.config.json
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
{
"plugins": [
"plugins/markdown"
],
"source": {
"include": [
"src/api.js"
]
},
"opts": {
"encoding": "utf8",
"destination": "./documentation/",
"readme": "documentation_index.md",
"template": "./node_modules/clean-jsdoc-theme",
"theme_opts": {
"title": "sql.js",
"meta": [
"<title>sql.js API documentation</title>",
"<meta name=\"author\" content=\"Ophir Lojkine\">",
"<meta name=\"description\" content=\"Documentation for sql.js: an in-memory SQL database for the browser based on SQLite.\">"
],
"menu": [
{
"title": "Website",
"link": "https://sql.js.org/"
},
{
"title": "Github",
"link": "https://github.com/sql-js/sql.js"
},
{
"title": "Demo",
"link": "https://sql.js.org/examples/GUI/"
}
]
}
}
}