gulp-markdown-pdf icon indicating copy to clipboard operation
gulp-markdown-pdf copied to clipboard

Markdown to PDF

trafficstars

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-pdf

Usage

const gulp = require('gulp');
const markdownPdf = require('gulp-markdown-pdf');

exports.default = () => (
	gulp.src('intro.md')
		.pipe(markdownPdf())
		.pipe(gulp.dest('dist'))
);

API

markdownPdf(options?)

See the markdown-pdf options.