I'm trying to fix this weird nested HTML I get from using ...contentEditable...<span lang="">
<p>line one</p>
<p>line two</p>
</span>
...I want to replace each of these ...span... nodes with its children...<p>line one</p>
<p>line two</p>
...Here's w...