Home

Awesome

gulp-markdown

Markdown to HTML with marked

Issues with the output should be reported on the marked issue tracker.

Install

npm install --save-dev gulp-markdown

Usage

import gulp from 'gulp';
import markdown from 'gulp-markdown';

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

API

markdown(options?) <sup>(default export)</sup>

See the marked options.

marked <sup>(named export)</sup>

Access the marked object to customize the lexer, parser or renderer.