Fix common HTML nesting errors in article content.
Corrects invalid block-level nesting patterns:
<p><ul>
<p>
<ul>
<p><ol>
<ol>
<p><div>
<div>
</p>
</ul>
</ol>
</div>
Raw HTML content
Fixed HTML content
Fix common HTML nesting errors in article content.
Corrects invalid block-level nesting patterns:
<p><ul>→ removes the enclosing<p>so the<ul>list is not nested inside a<p>paragraph<p><ol>→ removes the enclosing<p>so the<ol>list is not nested inside a<p>paragraph<p><div>→ removes the enclosing<p>so the block-level<div>is not nested inside a<p>paragraph</p>immediately after</ul>→ removed</p>immediately after</ol>→ removed</p>immediately after</div>(when wrapped by<p>) → removed