View Single Post
Old 07-01-2014, 01:27 AM   #11
odedta
Addict
odedta read the news today, oh boy.odedta read the news today, oh boy.odedta read the news today, oh boy.odedta read the news today, oh boy.odedta read the news today, oh boy.odedta read the news today, oh boy.odedta read the news today, oh boy.odedta read the news today, oh boy.odedta read the news today, oh boy.odedta read the news today, oh boy.odedta read the news today, oh boy.
 
Posts: 398
Karma: 96448
Join Date: Dec 2013
Device: iPad
Quote:
Originally Posted by kelemvor View Post
It actually looks like nothign is formatted as an actual paragraph. Just linesof text with the <br stuff in the middle which just adds a line break. Maybe if I just replace the <br> tags with <p> tags that will do what I want. hmm

Otherwise I'l have to do a bunch of find/replace to swap the <br strings with regular <p> things and go from there I guess...
This is what Calibre does when converting a not-well-formed word document, you see things like:
Quote:
<p>lalala<br class="calibre1"/>tatata<br class="calibre1"/>bababa</p>
Instead of dividing the 3 words into 3 paragraphs, I've seen seen happen quite often.

You could try editing CSS class:
Quote:
.calibre1
{
margin-top:2em;
}
or:
Quote:
.calibre1
{
line-height:1.5;
}
odedta is offline   Reply With Quote