Open
Description
If you input:
<div style="background-image: url("avatar.jpg");"></div>
The result is:
div [ attribute "style" "background-image: url("avatar.jpg");" ]
[]
Which is not valid elm code.
It should escape the double quotes:
div [ attribute "style" "background-image: url(\"avatar.jpg\");" ]
[]