Quote:
Originally Posted by mtravellerh
I think Charlie may use some BD-generated format and import that into Calibre to generate the other formats (epub and lrf). I know for sure that he uses BD to create his books. Maybe this hard linebreak occurs only in html-generated epubs.
|
An issue I'm having with Charlie's BD html is that only <div>'s are used and the CSS formatting works better when surround by <p>'s for .imp ebooks.
My original solution was to replace all div's with p's, but I may retain the div's and wrap them around p's with the same inline style, if any, like:
Code:
<p class="calibre_class_5"><span class="bold"><span class="calibre_class_2">Chapter I</span></span></p>
</a>
</span>
<p class="calibre_class_7">****George Colfax was in an outraged frame of mind, and properly so.</p>
or instead:
Code:
<p class="calibre_class_5"><div class="calibre_class_5"><span class="bold"><span class="calibre_class_2">Chapter I</span></span></div></p>
</a>
</span>
<p class="calibre_class_7"><div class="calibre_class_7">****George Colfax was in an outraged frame of mind, and properly so.</div></p>