gulp-markdown-pdf
Version:
31 lines (20 loc) • 610 B
Markdown
> Markdown to PDF with [`markdown-pdf`](https://github.com/alanshaw/markdown-pdf)
*Issues with the output should be reported on the `markdown-pdf` [issue tracker](https://github.com/alanshaw/markdown-pdf/issues).*
```sh
npm install --save-dev gulp-markdown-pdf
```
```js
import gulp from 'gulp';
import markdownPdf from 'gulp-markdown-pdf';
export default () => (
gulp.src('intro.md')
.pipe(markdownPdf())
.pipe(gulp.dest('dist'))
);
```
See the `markdown-pdf` [options](https://github.com/alanshaw/markdown-pdf#options).