The `\n`s in multiline texts in html need to be replaced with `\\n` ```html <div> Hello World </div> ``` generates ```nim tdiv: text "Hello World" ``` but expected ```nim tdiv: text "Hello\nWorld" ```