This package has been deprecated

Author message:

pull request https://github.com/SamVerschueren/gulp-api-doc/pull/3 merged. use https://www.npmjs.com/package/gulp-api-doc

gulp-api-doc-copy

1.1.1 • Public • Published

gulp-api-doc Build Status

Generates a RESTful web API Documentation with apiDoc.

Installation

npm install --save-dev gulp-api-doc

Usage

Generate documentation for the entire controllers directory.

const gulp = require('gulp');
const apidoc = require('gulp-api-doc');
 
gulp.task('doc', () => {
    return gulp.src('controllers')
        .pipe(apidoc())
        .pipe(gulp.dest('documentation'));
});

Generate documentation for all the controllers, except for the ones in the auth folder and don't parse markdown statements.

gulp.task('doc', () => {
    return gulp.src(['controllers/**/*.js', '!controllers/auth/*.js'])
        .pipe(apidoc({markdown: false}))
        .pipe(gulp.dest('documentation'));
});

Options

  • template: Directory with the template files.
  • debug (false): Show debug output.
  • silent (false): Hide log output.
  • markdown (true): Parse markdown statements in the documentation.
  • marked
    • gfm (true): Github flavored markdown.
    • tables (true): Enables Github flavored markdown tables. This option requires gfm to be true.
    • breakes (false): Enabled Github flavored markdown line breaks.
    • pedantic (false): Conform to obscure parts of markdown.pl as much as possible. Don't fix any of the original markdown bugs or poor behavior.
    • sanitize (false): Sanitize the output. Ignore any HTML that has been input.
    • smartLists (true): Use smarter list behaviour than the original markdown.
    • smartypants (false): Use "smart" typographic punctuation for things like quotes and dashes.

License (MIT)

MIT © Sam Verschueren

Package Sidebar

Install

npm i gulp-api-doc-copy

Weekly Downloads

1

Version

1.1.1

License

MIT

Last publish

Collaborators

  • huixisheng