We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d213581 commit 2cafc52Copy full SHA for 2cafc52
index.js
@@ -25,7 +25,7 @@ var File = require('vinyl');
25
*
26
* // Generating a pretty HTML documentation site
27
* gulp.src('./index.js')
28
- * .pipe(gulpDocumentation('html))
+ * .pipe(gulpDocumentation('html'))
29
* .pipe(gulp.dest('html-documentation'));
30
31
* // Generating raw JSON documentation output
@@ -41,7 +41,7 @@ var File = require('vinyl');
41
* gulp.task('documentation-multiple-files', function () {
42
43
* gulp.src('./src/*.js')
44
- * .pipe(gulpDocumentation({ format: 'md' }))
+ * .pipe(gulpDocumentation('md'))
45
* .pipe(gulp.dest('md-documentation'));
46
47
* });
0 commit comments