Quote:
Originally Posted by kelemvor
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;
}
|