CuityMiko / gulp-markdown

Markdown to HTML

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gulp-markdown Build Status

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

var gulp = require('gulp');
var markdown = require('gulp-markdown');

gulp.task('default', function () {
	return gulp.src('intro.md')
		.pipe(markdown())
		.pipe(gulp.dest('dist'));
});

API

markdown(options)

See the marked options.

markdown.marked

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

License

MIT © Sindre Sorhus

About

Markdown to HTML

License:MIT License


Languages

Language:JavaScript 100.0%