Ah makes sense. So far, just editing the code has worked on the 5 sites I’ve tried it on that were having this issue. Seems like this might be happening from a formatter which tries to break up long lines. If the line is too long, it looks like it swaps this
<img src="somelongurl" class="some-long-class-list" height="10" width="10">
to
<img
src="somelongurl"
class="some-long-class-list"
height="10"
width="10"
>
I think this is a standard thing in most formatters (prettier, etc)
-
This reply was modified 1 year, 2 months ago by emboldtyler.