npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

gulp-html2md

1.1.2

@hemanth

npmHomeRepoSnykSocket
Downloads:2
$ npm install gulp-html2md
DailyWeeklyMonthlyYearly

gulp-html2md NPM version Build status

Cleans your HTML using html-md

Usage

First, install gulp-html2md as a development dependency:

npm install --save-dev gulp-html2md

Then, add it to your gulpfile.js:

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

gulp.task('default', function(){
  gulp.src('index.html')
    .pipe(html2md())
    .pipe(gulp.dest('build'));
});

The above will convert index.html to index.md!