JSDoc theme used by bookshelfjs.org, the homepage of the Bookshelf.js ORM http://bookshelfjs.org
npm install bookshelf-jsdoc-themeJSDoc theme for bookshelfjs.org.
Forked from Minami.
- the Taffy Database library
- Underscore Template library
``bash`
$ npm install --save-dev bookshelf-jsdoc-theme
Clone repository to your designated jsdoc template directory, then:
`bash`
$ jsdoc entry-file.js -t path/to/bookshelf-jsdoc-theme
Stlyes must be compiled if edited:
`bash`
$ npm run styles
In your projects package.json file add a generate script:
`json`
"script": {
"generate-docs": "jsdoc --configure .jsdoc.json --verbose"
}
In your .jsdoc.json file, add a template option.
`json`
"opts": {
"template": "./node_modules/bookshelf-jsdoc-theme"
}
`js``
{
"tags": {
"allowUnknownTags": true,
"dictionaries": ["jsdoc"]
},
"source": {
"include": ["lib", "package.json", "README.md"],
"includePattern": ".js$",
"excludePattern": "(node_modules/|docs)"
},
"plugins": [
"plugins/markdown"
],
"templates": {
"cleverLinks": false,
"monospaceLinks": true
},
"opts": {
"destination": "./docs/",
"encoding": "utf8",
"private": true,
"recurse": true,
"template": "./node_modules/bookshelf-jsdoc-theme"
"whitelist": ['Optional', 'List', 'Of', 'Top', 'Level', 'Classes']
"changelog": './path-to/CHANGELOG.md',
"title": "Bookshelf.js"
}
}
Licensed under the Apache2 license.