tjchaplin / gulp-mox

Gulp plugin for using mox( A markdown javascript documentation generator)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gulp-mox

Gulp plugin for using mox ( A markdown javascript documentation generator)

  • Issues with the output should be reported on the mox issue tracker.*

Build Status

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.

License

MIT © Tim Chaplin

About

Gulp plugin for using mox( A markdown javascript documentation generator)

License:MIT License


Languages

Language:JavaScript 100.0%