posthtml-minifier
v0.1.0
Published
PostHTML plugin that wraps HTMLMinifier
Downloads
543
Maintainers
Readme
posthtml-minifier
PostHTML plugin that wraps HTMLMinifier.
Usage
var posthtml = require('posthtml');
var minifier = require('posthtml-minifier');
posthtml()
.use(minifier({ removeComments: true }))
.process('<html><body><!-- a comment --></body></html>')
.then(function(result) {
console.log(result.html); //=> '<html><body></body></html>'
});