I have some text:
<p>I hope that this works!</p> <p>Now that this is in, let's see!</p><p>I hope that bold <strong>works too</strong>!</p>
<p>Will this works</p><ol><li>First item</li><li>Second item</li><li>Third item</li></ol>
I want to split it into:
<p>I hope that this works!</p>
and
<p>Now that this is in, let's see!</p><p>I hope that bold <strong>works too</strong>!</p>
and
<ol><li>First item</li><li>Second item</li><li>Third item</li></ol>
I don't want to split on any of the child elements, just the siblings?