voku / HtmlMin

:clamp: HtmlMin: HTML Compressor and Minifier via PHP
MIT License
161 stars 22 forks source link

`sizes` and `srcset` value are not trim... #87

Open jimblue opened 1 year ago

jimblue commented 1 year ago

Hi,

I've notice that sizes and srcset value are not trim...

For exemple, the following HTML source:

<source
  type="image/webp"
  srcset="
    /images/cat-360.webp 360w,
    /images/cat-720.webp 720w,
    /images/cat-1440.webp 1440w
  "
/>

is minnify like this:

<source type="image/webp" srcset=" /images/cat-360.webp 360w, /images/cat-720.webp 720w, /images/cat-1440.webp 1440w  "/>

when it should returns:

<source type="image/webp" srcset="/images/cat-360.webp 360w, /images/cat-720.webp 720w, /images/cat-1440.webp 1440w"/>