kgrubb / gulp-markdown-pdf

Markdown to PDF

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gulp-markdown-pdf Build Status

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');

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

About

Markdown to PDF

License:MIT License


Languages

Language:JavaScript 100.0%