Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

gulp-markdown-pdf

sindresorhus1.6kMIT9.0.0

Markdown to PDF

gulpplugin, markdown, marked, md, compile, convert, markup, pdf, template, phantomjs

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

Usage

import gulp from 'gulp';
import markdownPdf from 'gulp-markdown-pdf';

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

API

markdownPdf(options?)

See the markdown-pdf options.