0.2.4 • Published 9 years ago

gulp-postxml v0.2.4

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

Gulp-postxml

It is a plugin for gulp that transforms xml and html with JS plugins using cheerio API.

Usage

Instalation

npm i gulp-postxml --save-dev

Gulp

var postxml = require('gulp-postxml');
var postxmlPlugins = [
      require('postxml-plugin')
   ];
var cheerioOptions = {};

gulp.task('html', function () {
   gulp.src('index.htm')
      .pipe(postxml(postxmlPlugins, cheerioOptions))
      .pipe(gulp.dest('out'));
})