mbylstra / html-to-elm

An online tool for converting HTML to elm-html. Go to
http://mbylstra.github.io/html-to-elm/
394 stars 23 forks source link

Double quotes in text nodes should be escaped #4

Closed mbylstra closed 8 years ago

mbylstra commented 8 years ago

input

<div>a "quoted" word</div>

expected output

div []
    [ text "a \"quoted\" word" ]

actual output

div []
    [ text "a "quoted" word" ]