You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 14, 2019. It is now read-only.
It seems that plugin affects html output far beyond just adding srcsets.
For instance, it changes HTML quotes:
<divclass='test'></div>
to
<divclass="test"></div>
Also, it affects inner whitespacing:
<divclass="test"></div>
becomes
<div class="test"></div>
While issue with whitespace doesn't seem to be serious (though, it make Git comparison show a lot of unintended changes), changes of quotes actually is a serious issue, because it will break following case:
<divdata-settings='{"id":9089}'></div>
Result will be
<divdata-settings="{"id":9089}"></div>
which effectively makes HTML wrong.
The text was updated successfully, but these errors were encountered:
It seems that plugin affects html output far beyond just adding srcsets.
For instance, it changes HTML quotes:
to
Also, it affects inner whitespacing:
becomes
While issue with whitespace doesn't seem to be serious (though, it make Git comparison show a lot of unintended changes), changes of quotes actually is a serious issue, because it will break following case:
Result will be
which effectively makes HTML wrong.
The text was updated successfully, but these errors were encountered: