Quote:
Originally Posted by gogreen
When converting Sigil, epub to epub in Calibre and then viewing on ereaders such as Aldiko and nook, pages appear to break at long paragraphs. Can anyone suggest an html code to insert to prevent this when formatting in Sigil.
|
This problem is most likely caused by Calibre's file splitting algorithm that splits .html files based on their size and might break up long paragraphs.
I'd recommend splitting files in
Sigil instead:
1. Open the ePub file with Sigil and switch to Code View.
2. Identify the heading tag used for chapter headings, e.g.
<h1>Chapter 1</h1>
3. Insert Sigil split markers using search and replace. I.e.
Find:
<h1>
Replace:
<hr class="sigil_split_marker" /><h1>
4. Select
Edit > Split At Markers to split the file.