docdash_vispa
Version:
Docdash fork with customized sidebar.
92 lines (72 loc) • 2.13 kB
Markdown
[](https://www.npmjs.com/package/docdash) [](LICENSE.md)
A clean, responsive documentation template theme for JSDoc 3.


See http://clenemt.github.io/docdash/ for a sample demo. :rocket:
```bash
$ npm install docdash
```
Clone repository to your designated `jsdoc` template directory, then:
```bash
$ jsdoc entry-file.js -t path/to/docdash
```
In your projects `package.json` file add a new script:
```json
"script": {
"generate-docs": "node_modules/.bin/jsdoc -c jsdoc.json"
}
```
In your `jsdoc.json` file, add a template option.
```json
"opts": {
"template": "node_modules/docdash"
}
```
See the config file for the [fixtures](fixtures/fixtures.conf.json) or the sample below.
```json
{
"tags": {
"allowUnknownTags": false
},
"source": {
"include": "../js",
"includePattern": ".js$",
"excludePattern": "(node_modules/|docs)"
},
"plugins": [
"plugins/markdown"
],
"opts": {
"template": "assets/template/docdash/",
"encoding": "utf8",
"destination": "docs/",
"recurse": true,
"verbose": true
},
"templates": {
"cleverLinks": false,
"monospaceLinks": false
}
}
```
Docdash supports the following options:
```
{
"docdash": {
"static": [false|true], // Display the static members inside the navbar
"sort": [false|true] // Sort the methods in the navbar
}
}
```
Place them anywhere inside your `jsdoc.json` file.
Thanks to [lodash](https://lodash.com) and [minami](https://github.com/nijikokun/minami).
Licensed under the Apache License, version 2.0. (see [Apache-2.0](LICENSE.md)).