View Single Post
Old 03-24-2020, 08:33 PM   #4
JoshuaEBSmith
Junior Member
JoshuaEBSmith began at the beginning.
 
Posts: 1
Karma: 10
Join Date: Mar 2020
Device: Kindle App
A solution

I ran into this problem (and this thread) myself.

What I discovered was that for some reason, chapter titles and headings were being put into a list. I had to enter the 'edit book' function of Calibre, then start looking at the code for each chapter.

The code you're looking for that's causing the problem is going to read like this:

Code:
<ol class="list_">
	<li class="block_61" id="id_RefHeading___Toc2449_3233325000" value="13">
That OL tag is what's calling it a list - and the "value" is telling it what number to put in front of the text. Just delete the tag, and replace li class= with p class= and your problem should be fixed.
JoshuaEBSmith is offline   Reply With Quote