`sizes` and `srcset` value are not trim...
jimblue opened this issue · 0 comments
jimblue commented
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"/>