Package Exports
- gulp-markdown-pdf
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-markdown-pdf) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
gulp-markdown-pdf 
Markdown to PDF with markdown-pdf
Issues with the output should be reported on the markdown-pdf issue tracker.
Install
$ npm install --save-dev gulp-markdown-pdfUsage
const gulp = require('gulp');
const markdownPdf = require('gulp-markdown-pdf');
gulp.task('default', () =>
gulp.src('intro.md')
.pipe(markdownPdf())
.pipe(gulp.dest('dist'))
);API
markdownPdf([options])
See the markdown-pdf options.
License
MIT © Sindre Sorhus