a Humble object that will be modified in place.
A plugin wrapper for the minifyGenericTagNames
function.
a Humble object that will be modified in place.
A plugin wrapper for the minifyHtml
function.
a Humble object that will be modified in place.
A plugin wrapper for the minifyJs
function.
a Humble object that will be modified in place.
Minifies the CSS in all <style>
tags and all inline style
attributes in
the document. The implementation is from the clean-css
library.
the document that will be modified in place.
the options used within the clean-css
library.
Minifies generic tag names that have no HTML semantic meaning. Currently the algorithm used to minify generic tag names minifies the following tags:
<div>
-> <d>
<span>
-> <n>
the document that will be modified inplace.
Minifies HTML. The implementation is from the html-minifier
library.
the html that will be minified.
the options used within the html-minifier
library.
the minified HTML.
Minifies the JavaScript in all <script>
tags, in all inline script
attributes in the document, and all javascript:
protocols. The
implementation is from the terser
library.
the document that will be modified in place.
the options used within the terser
library.
Generated using TypeDoc
A plugin wrapper for the
minifyCss
function.