0.1.0 • Published 8 years ago

gulp-showdown v0.1.0

Weekly downloads
1
License
-
Repository
github
Last release
8 years ago

Showdown for Gulp.js

Installation

Install package with NPM and add it to your development dependencies:

npm install --save-dev gulp-showdown

Usage

var gulpShowdown = require('gulp-showdown');

gulp.task('md2html', function() {
  gulp.src('src/*.md')
    .pipe(gulpShowdown())
    .pipe(gulp.dest('src/html'))
});