Your problem is caused by having <h3> inside <p> which is illegal in HTML and causes the block counting to get thrown off. See
<p>
<h3>The Authors</h3>
</p>
Fix that and you will be fine. Unfortunately, because that file is valid XML (but not valid HTML) the Fix HTML tool does not catch and fix that error, since trying to detect invalid html inside valid XML is rather expensive.
|