yuidoc-dropkick-theme
v0.0.8
Published
A simple YUIDoc theme for DropKick.js
Downloads
14
Readme
yuidoc-dropkick-theme
A simple YUIDoc theme for DropKick.js. This is based (and forked) off of yuidoc-lucid-theme.
$ npm install yuidoc-dropkick-theme --save-dev
Configuration
Command-Line
When running yuidoc directly from the command line without a configuration file, specify the theme with the following two arguments:
-t
Theme directory-H
Template helpers
$ yuidoc -t node_modules/yuidoc-dropkick-theme -H node_modules/yuidoc-bootstrap-theme/helpers/helpers.js
Configuration File
If your project uses a "yuidoc.json" file for configuration, add:
"themedir" : "node_modules/yuidoc-dropkick-theme",
"helpers" : ["node_modules/yuidoc-dropkick-theme/helpers/helpers.js"]
Example:
{
"name": "Example",
"url": "www.example.com",
"version": "0.1.0",
"options": {
"paths": "_location to parse_",
"outdir": "build/docs",
"exclude": "lib,docs,build",
"themedir": "node_modules/yuidoc-dropkick-theme",
"helpers": ["node_modules/yuidoc-dropkick-theme/helpers/helpers.js"]
}
}