jsdoc-riot
v0.1.3
Published
JSDoc plugin that adds support for Riot tag files
Downloads
33
Maintainers
Readme
JSDoc plugin that adds support for Riot tag files
Compiles Riot tag files before they are processed by JSDoc
Installion
The jsdoc-riot
plugin can by installed using NPM.
npm install --save-dev jsdoc-riot
Usage:
To use the plugin include the plugin module in the plugins
array of JSDoc's configuration file
{
"plugins": ["jsdoc-riot"],
"source": {
"includePattern": ".+\\.js|tag(doc)?$"
}
}
If for some wierd reasons jsdoc can't find the jsdoc-riot
plugin (I get this among other plugins as well), change the plugin path to the following:
{
"plugins": ["./node_modules/jsdoc-riot"],
"source": {
"includePattern": ".+\\.js|tag(doc)?$"
}
}
Contributing:
Feel free to open issues to propose stuff and participate. Pull requests are also welcome.
Release History
- 0.1.0 Initial release