Quote:
Originally Posted by embryo
For some reason this doesn't show up in the book rendering. Maybe the stylesheet is broken or has something that the crengine doesn't support.
|
Do those paragraphs intended as empty lines have anything between the p tags? Spaces don't count. By design, viewers will render
Code:
<p>Lots of spaces from here to here.</p>
as
Lots of spaces from here to here.
I had to wrap the line in code tags because 19 of those 20 spaces in the middle wouldn't otherwise render in my browser, which is by design not an error.
Code:
<p>Some text...</p>
<p> </p>
<p></p>
<p>Some more text...</p>
will render as
Some text...
Some more text...
because both of those paragraph tags in the middle are surrounding effectively nothing, even if one does contain an ordinary space character, and are effectively ignored. However
Code:
<p>Some text...</p>
<p> </p>
<p>Some more text...</p>
will render looking like
Some text...
Some more text...
because that non breaking space isn't ignored but is often drawn even if it is invisible. (However, while I pasted a non breakspacing in that line and it's still in this edit window it's not selectable in preview. It is selectable in other applications.)