All Projects → sindresorhus → Gulp Markdown Pdf

sindresorhus / Gulp Markdown Pdf

Licence: mit
Markdown to PDF

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Gulp Markdown Pdf

Mdpdf
Markdown to PDF command line app with support for stylesheets
Stars: ✭ 512 (+814.29%)
Mutual labels:  markdown, pdf, converter
Markdown Pdf
📄 Markdown to PDF converter
Stars: ✭ 2,365 (+4123.21%)
Mutual labels:  markdown, pdf, converter
Mybox
Easy tools of document, image, file, network, location, color, and media.
Stars: ✭ 45 (-19.64%)
Mutual labels:  markdown, pdf, converter
Backslide
💦 CLI tool for making HTML presentations with Remark.js using Markdown
Stars: ✭ 679 (+1112.5%)
Mutual labels:  markdown, pdf
Vscode Markdown Pdf
Markdown converter for Visual Studio Code
Stars: ✭ 571 (+919.64%)
Mutual labels:  markdown, pdf
Ox Hugo
A carefully crafted Org exporter back-end for Hugo
Stars: ✭ 591 (+955.36%)
Mutual labels:  markdown, converter
Pdf2word
60行代码实现多线程PDF转Word
Stars: ✭ 467 (+733.93%)
Mutual labels:  pdf, converter
Online Markdown
A online markdown converter specially for Wechat Public formatting.
Stars: ✭ 812 (+1350%)
Mutual labels:  markdown, converter
Recipes
Django application for managing recipes
Stars: ✭ 695 (+1141.07%)
Mutual labels:  markdown, pdf
Markdown2document
turn markdown files to a PDF or HTML document
Stars: ✭ 22 (-60.71%)
Mutual labels:  markdown, pdf
O
🌀 Text editor suitable for writing git commit messages and editing Markdown files. Can build executables and jump to errors at the press of `ctrl-space`, for several programming languages. Can format code with `ctrl-w`. Provides general syntax highlighting, rainbow parenthesis and cut/paste portals. o is intentionally limited to VT100.
Stars: ✭ 54 (-3.57%)
Mutual labels:  markdown, pdf
Pandoc
Universal markup converter
Stars: ✭ 24,250 (+43203.57%)
Mutual labels:  markdown, converter
Zettlr
A Markdown Editor for the 21st century.
Stars: ✭ 6,099 (+10791.07%)
Mutual labels:  markdown, pdf
Md2pdf
Offline markdown to pdf, choose -> edit -> transform 🥂
Stars: ✭ 632 (+1028.57%)
Mutual labels:  markdown, pdf
Asciidoctor Pdf
📃 Asciidoctor PDF: A native PDF converter for AsciiDoc based on Asciidoctor and Prawn, written entirely in Ruby.
Stars: ✭ 868 (+1450%)
Mutual labels:  pdf, converter
Gotenberg Go Client
Go client for the Gotenberg API
Stars: ✭ 35 (-37.5%)
Mutual labels:  markdown, pdf
Easybook
Book publishing as easy as it should be (built with Symfony components)
Stars: ✭ 744 (+1228.57%)
Mutual labels:  markdown, pdf
Markdown Resume Js
Turn a simple markdown document into a resume in HTML and PDF
Stars: ✭ 449 (+701.79%)
Mutual labels:  markdown, pdf
Cairosvg
Convert your vector images
Stars: ✭ 453 (+708.93%)
Mutual labels:  pdf, converter
Markdownviewerplusplus
A Notepad++ Plugin to view a Markdown file rendered on-the-fly
Stars: ✭ 865 (+1444.64%)
Mutual labels:  markdown, pdf

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].