Preprocess HTML for better typography with typeset
Issues with the output should be reported on the Typeset issue tracker.
$ npm install --save-dev gulp-typeset
var gulp = require('gulp');
var typeset = require('gulp-typeset');
gulp.task('default', function () {
return gulp.src('index.html')
.pipe(typeset())
.pipe(gulp.dest('dist'));
});
Refer to David Merfield's Typeset module options for further reference on available configuration.
MIT © Lucas Constantino Silva