A patched version of JaguarJS-JSDoc
JaguarJS-JSDoc is by far the most beautiful JSDoc theme in existence, but unfortuantely it's no longer maintained.
This patched version consists of every PR and every other patch I could find, all mashed together into one giant hideous amalgalm, all in the name of progress. It seems to work.
- Install from npm
$ npm install jaguarjs-jsdoc-patched --save-dev
-
Copy the
conf.json
file to the root directory of your repo. Edit as necessary. -
Assuming you're using grunt-jsdoc, set the template to
./node_modules/jaguarjs-jsdoc-patched
grunt.initConfig({
..other grunt tasks here..
jsdoc : {
dist : {
src: ['src/*.js', 'README.md'],
options: {
destination: 'docs',
configure : "conf.json",
template: './node_modules/jaguarjs-jsdoc-patched'
}
}
}
});
Other task runners should work similarly.
- Again assuming you're using grunt-jsdoc, simply run
grunt jsdoc
!
This project under the MIT License.