Following code: ``` b ("hello") span "world" ``` produces wrong result: ``` <b>hello<span>world</span></b> ``` Should be: ``` <b>hello</b><span>world</span> ```
Following code:
produces wrong result:
Should be: