Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 1.18 KB

File metadata and controls

27 lines (17 loc) · 1.18 KB

@gulp-plugin/pandoc npm (custom registry) GitHub Package Registry version

Build Coverage Status dependencies Status

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