Package Exports
- docdash
- docdash/package.json
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (docdash) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Docdash
A clean, responsive documentation template theme for JSDoc 3.


Example
See http://clenemt.github.io/docdash/ for a sample demo. 🚀
Install
$ npm install docdashUsage
Clone repository to your designated jsdoc template directory, then:
$ jsdoc entry-file.js -t path/to/docdashUsage (npm)
In your projects package.json file add a new script:
"script": {
"generate-docs": "node_modules/.bin/jsdoc -c jsdoc.json"
}In your jsdoc.json file, add a template option.
"opts": {
"template": "node_modules/docdash"
}Sample jsdoc.json
See the config file for the fixtures or the sample below.
{
"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
}
}Options
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
License
Licensed under the Apache License, version 2.0. (see Apache-2.0).