@gulp-plugin/pandoc
v1.0.1
Published
Pandoc plugin for Gulp.
Downloads
2
Readme
@gulp-plugin/pandoc
A JavaScript/TypeScript Pandoc plugin for Gulp
Installation
npm install --save-dev @gulp-plugin/pandoc
Usage
Then, add it to your gulpfile.js
:
const collect = require('@gulp-plugin/pandoc');
gulp.src('docs/**/*.md')
.pipe(pandoc({ from: 'markdown', to: 'html', ext: '.html' }))
.pipe(gulp.dest('docs/'));
License
This project is licensed under the MIT License - see the LICENSE.md file for details