@eluvio/elv-docdash
v0.0.3
Published
A customized version of the Docdash JSDoc theme (https://github.com/clenemt/docdash)
Downloads
90
Readme
elv-docdash
This is a modified version of the Docdash JSDoc theme by Clement Moron. See CHANGELOG.md for a list of customizations.
Install
$ npm install --save-dev @eluvio/elv-docdash
Usage (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 an /opts/template option and a /docdash section:
Sample .jsdoc.json
{
"tags": {
"allowUnknownTags": true,
"dictionaries": ["jsdoc"]
},
"source": {
"include": ["src"],
"includePattern": ".js$",
"excludePattern": "(node_modules/|docs)"
},
"plugins": [
"plugins/markdown"
],
"opts": {
"destination": "./docs/",
"encoding": "utf8",
"pedantic": true,
"private": false,
"recurse": true,
"template": "node_modules/@eluvio/elv-docdash"
},
"docdash": {
"static": true,
"sort": true,
"search": true,
"collapse": true,
"typedefs": true,
"removeQuotes": "none",
"scripts": [],
"menu":{
"Github repo": {
"href":"HTTPS_LINK_TO_YOUR_GITHUB_REPO",
"target":"_blank",
"class":"menu-item",
"id":"repository"
}
}
}
}
License
Licensed under the Apache License, version 2.0. (see Apache-2.0).