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" ```
The
\ns in multiline texts in html need to be replaced with\\ngenerates
tdiv: text "Hello World"but expected
tdiv: text "Hello\nWorld"