View Single Post
Old 11-01-2011, 11:51 PM   #6
DoctorOhh
US Navy, Retired
DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.DoctorOhh ought to be getting tired of karma fortunes by now.
 
DoctorOhh's Avatar
 
Posts: 9,897
Karma: 13806776
Join Date: Feb 2009
Location: North Carolina
Device: Icarus Illumina XL HD, Kindle PaperWhite SE 11th Gen
I may be far off base with my limited knowledge of HTML but I'm going to take a stab at this anyways.

Quote:
Originally Posted by therealjoeblow View Post
I don't want it to do that, as it effectively gives me a full line blank space in between the 2 lines where the break occurs, I just want it to retain the simple line break.

Is there a config option to disable this?
No, calibre is converting what you give it. There is an unseen line break after every comma that calibre properly replaces with the functional equivalent of
<br class="calibre1" /> (notice the self-closing / these aren't optional) and leaves your improper tag of <br> in place unaltered.

First, you should be using <br /> not <br>

Quote:
Originally Posted by therealjoeblow View Post
Code:
<p class="indentedquote">This is some quoted passage,
<br>This is the next line in the quote,
<br>and yet another line,
<br>and the final line in the quote.</p>
Second the above is incorrect it should be the following.

Quote:
Originally Posted by therealjoeblow View Post
Code:
<p class="indentedquote">This is some quoted passage,<br />
This is the next line in the quote, <br />
and yet another line,<br />
and the final line in the quote.</p>
What happens is you convert it this way.

I'm also curious what format are you converting from/to?

Last edited by DoctorOhh; 11-01-2011 at 11:55 PM.
DoctorOhh is offline   Reply With Quote