Consider the following:
<div>word <code>code</code> word</div>
it emits :
React.createElement("div", null, "word ", React.createElement("code", null, "code"), "word");
Should emit:
React.createElement("div", null, "word ", React.createElement("code", null, "code"), " word");
Consider the following:
it emits :
Should emit: