terser / html-minifier-terser

actively maintained fork of html-minifier - minify HTML, CSS and JS code using terser - supports ES6 code
https://terser.org/html-minifier-terser
MIT License
376 stars 30 forks source link

Add missing boolean attributes #165

Open pepelsbey opened 1 year ago

pepelsbey commented 1 year ago

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>