Skip to content

i5ting/gulp-markdown-livereload

 
 

Repository files navigation

gulp-markdown-livereload Build Status

Markdown to HTML with marked

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

Livereload

http://feedback.livereload.com/knowledgebase/articles/86180-how-do-i-add-the-script-tag-manually-

Install

$ npm install --save-dev gulp-markdown-livereload

Usage

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

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

API

markdown(options)

See the marked options.

History

  • v0.1.0
    • init

License

MIT © alfred sang

About

Compile Markdown to HTML with Livereload Script Inject

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%