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

Add missing boolean attributes

Open pepelsbey opened this issue 2 years ago • 1 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

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>

otomad avatar Feb 20 '25 15:02 otomad