gulp-docdown

0.1.11 • Public • Published

gulp-docdown

gulp-docdown is a plugin to docdown :)

Snapshots

style-default

Install

npm install gulp-docdown gulp-rename 

Usage(in gulpfile.js)

var gulp = require('gulp'),
    gulpDocDown = require('gulp-docdown'),
    rename = require('gulp-rename')
    ;
 
gulp.task('gulpDocDown', function(){
    // 'html' or 'md'
    var outputType = 'html';
    gulp.src('./*.js')
    .pipe(gulpDocDown({
        // {fileName} will replace by file name, define for docDown.
        title: 'API documentation / {fileName}',    
        // {filePath} will replace by file path, define for docDown.
        url: 'https://github.com/xxx/xxx/blob/master/{filePath}',
        // topic group type , define for docDown.
        toc: 'categories', 
        // the outputType : 'html' or 'md' , 'md' default.
        outputType : outputType,
        // [optional] define the html template, 'default' default.
        // htmlStyle : 'default'
        // [optional] or DIY your template, <%- title %> & <%- htmlContent %> will be relaced.
        // htmlTpl : '<!DOCTYPE html><html><head><title><%- title %></title><head><body><%- htmlContent %></body></html>'
    }))
    .pipe(rename({
        extname: '.' + outputType
    }))
    .pipe(gulp.dest('./output'));
});
 
gulp.task('default', ['gulpDocDown']);

License

MIT License

Readme

Keywords

none

Package Sidebar

Install

npm i gulp-docdown

Weekly Downloads

15

Version

0.1.11

License

none

Last publish

Collaborators

  • xunuo