1.0.0 • Published 8 years ago

gulp-to-markdown v1.0.0

Weekly downloads
97
License
MIT
Repository
github
Last release
8 years ago

gulp-to-markdown

Gulp wrapper for to-markdown - an HTML to Markdown converter created by Dom Christie. Issues with the output should be reported on the to-markdown issue tracker.

##Install

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

##Usage

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

gulp.task('default', function () {
    return gulp.src('./src/**/*.html')
        .pipe(toMarkdown())
        .pipe(gulp.dest('./dist'));
});
// .md files will be in ./dist