0.0.1 • Published 9 years ago

gulp-pangu v0.0.1

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

gulp-pangu Build Status

gulp-pangu is a Gulp extension to add space between Chinese and English characters to file(s) in the pipeline.

The algorithm is from paranoid-auto-spacing

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

Install

$ npm install --save-dev gulp-pangu

Usage

// include the required packages.
var gulp = require('gulp');
var pangu = require('gulp-pangu');

gulp.task('pangu', function() {
  gulp.src(['./test.html'])
  .pipe(pangu())
  .pipe(gulp.dest('./dist/'));
});

License

Released under the MIT License.