gulp-mox
v0.0.4
Published
Gulp plugin for using mox( A markdown javascript documentation generator)
Downloads
32
Maintainers
Readme
gulp-mox
Gulp plugin for using mox ( A markdown javascript documentation generator)
- Issues with the output should be reported on the mox issue tracker.*
Install
$ npm install --save-dev gulp-mox
Usage
var gulp = require('gulp');
var mox = require('gulp-mox');
gulp.task('documentation', function () {
return gulp.src('anySourceFile.js')
.pipe(mox())
.pipe(gulp.dest('documentation'));
});
Example Documentation Output
See the mox examples.
API
mox(options)
See the mox options.