html-browser-minifier
v0.1.5
Published
Clean html by minifying html, striping comments, removing js, removing ng attributes and removing whitespaces
Downloads
4
Maintainers
Readme
HTML cleaning tool that works in the browser based on https://github.com/kangax/html-minifier/
usage is
const minify = require('html-browser-minifier');
const minifiedText = minify(text, options);
Options are
{
collapseBooleanAttributes = true,
collapseWhitespace = true,
removeNgAttributes = true,
removeCssComments = true,
removeHTMLComments = true,
removeJS = true
}