lest
lest copied to clipboard
Using DO-CODE after PAIRED-TAG leaves tag opened.
Following code:
b ("hello") span "world"
produces wrong result:
<b>hello<span>world</span></b>
Should be:
<b>hello</b><span>world</span>