Use dox to automatically generate beautiful html documentation. Doxx is a total refactoring of dox-foundation.
Outputted HTML is by default based on templates and css from Twitter Bootstrap and syntax highlighting is done by Prism.js.
Doxx was tested with JavaScript as well as generated JavaScript from CoffeeScript.
JavaScript JavaDoc style
/**
* Create an array of all the right files in the source dir
* @param {String} source path
* @param {Object} options
* @param {Function} callback
* @jsFiddle A jsFiddle embed URL
* @return {Array} an array of string path
*/
function collectFiles(source, options, callback) {
...
}
CoffeeScript JavaDoc style
###*
* Create an array of all the right files in the source dir
* @param {String} source path
* @param {Object} options
* @param {Function} callback
* @jsFiddle A jsFiddle embed URL
* @return {Array} an array of string path
###
collectFiles = (source, options, callback) ->
...
Install the module with: npm install doxx -g
$ doxx --help
Usage: doxx [options]
Options:
-h, --help output usage information
-V, --version output the version number
-r, --raw output "raw" comments, leaving the markdown intact
-d, --debug output parsed comments for debugging
-t, --title <string> The title for the page produced
-s, --source <source> The folder which should get parsed
-i, --ignore <directories> Comma seperated list of directories to ignore. Default: test,public,static,views,templates
-T, --target <target> The folder which will contain the results. Default: <process.cwd()>/docs
-e, --target_extension <target_extension> Target files extension. Default: html
--template <jade template> The jade template file to use
Examples:
# parse a whole folder
$ doxx --source lib --target docs
# parse a whole folder and use a specific template
$ doxx --template ./view/myowntpl.jade --source lib --target docs
- grunt-doxx - Doxx grunt plugin automatically generates the documentation for your project.
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using grunt.
- 0.0.1 - (dox-foundation) Initial release
- 0.2.0 - (dox-foundation) Readable output
- 0.3.0 - (dox-foundation) Support for folder parsing
- 0.4.0 - (dox-foundation) Improved project navigation, major refactor of folder code
- 0.5.0 - Initial release of doxx
- 0.7.0 - Merge pull requests #16 #17 #19 #20
- 0.7.1 - Merge pull request #25 - Add target_extension option
- 0.7.2 - Upgrade dox to ~0.4.4
- 0.7.4 - Merge pull requests #29 #30
- 1.0.0 - Upgraded dependencies, removed support for NodeJS 0.6 & 0.8.
- 1.1.0 - Doxx is now exposed as a nodejs module #47 /thanks @leejt489
- 1.1.1 - Fix require issue from @leejt489 by @nicolasbrugneaux in #49
- 1.2.0 - [New] Add the ability to send in pre-compiled dox source by @leejt489 #51
- 1.2.1 - [Fix] Fixes TypeError thrown if target option not passed. by @gwagroves #53
Copyright (c) 2013 Francois-Guillaume Ribreau MIT License