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
var gulp = require('gulp');
var markdownpdf = require('gulp-markdown-pdf');
gulp.task('default', function () {
return gulp.src('intro.md')
.pipe(markdownpdf())
.pipe(gulp.dest('dist'));
});API
markdownpdf(options)
See the markdown-pdf options.