Thread: Splitting
View Single Post
Old 02-16-2014, 10:27 AM   #5
kovidgoyal
creator of calibre
kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.kovidgoyal ought to be getting tired of karma fortunes by now.
 
kovidgoyal's Avatar
 
Posts: 45,235
Karma: 27110894
Join Date: Oct 2006
Location: Mumbai, India
Device: Various
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.
kovidgoyal is offline   Reply With Quote