html-minifier-terser
html-minifier-terser copied to clipboard
Add missing boolean attributes
These are boolean attributes, as referenced in the spec:
Otherwise, they won’t collapse, as rendered by online version:
<script nomodule="nomodule"></script>
<video playsinline="playsinline">
<input disabled="disabled">
<script nomodule=nomodule></script>
<video playsinline=playsinline>
<input disabled>
Please add attributes:
-
crossorigin -
referrerpolicy
Unlike other attributes, if the value of these attributes is empty string, then the value can be omitted and show only the attribute name.
Example:
<script crossorigin="" referrerpolicy=""></script>
Expected to be:
<script crossorigin referrerpolicy></script>