html-minifier-terser icon indicating copy to clipboard operation
html-minifier-terser copied to clipboard

Add missing boolean attributes

Open pepelsbey opened this issue 11 months ago • 0 comments

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>

pepelsbey avatar Sep 19 '23 14:09 pepelsbey