1.0.0 • Published 10 years ago

gulp-markdown-livereload v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
10 years ago

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.

License

MIT © Sindre Sorhus