gulp-html2txt
v1.2.1
Published
gulp plugin to convert html to text
Downloads
32,529
Readme
gulp-html2txt
Converts HTML to txt using html-to-text
Usage
First, install gulp-html2txt
as a development dependency:
npm install --save-dev gulp-html2txt
Then, add it to your gulpfile.js
:
var html2txt = require('gulp-html2txt');
gulp.task('default', function(){
gulp.src('index.html')
.pipe(html2txt(options)) // options as in `html-to-text`
.pipe(gulp.dest('dist'));
});
The above will convert index.html to index.txt.