The fact that foo <strong>bar</strong> gets turned into foo <span><strong></span>bar<span></strong></span> is obviously horribly broken. It's tied to the fact that the walker gives <strong> as an inline HTML element, then gives bar as a text node, followed by </strong> as another inline html element. Not 100% how to best handle this yet.
The fact that
foo <strong>bar</strong>gets turned intofoo <span><strong></span>bar<span></strong></span>is obviously horribly broken. It's tied to the fact that the walker gives<strong>as an inline HTML element, then givesbaras a text node, followed by</strong>as another inline html element. Not 100% how to best handle this yet.