Quote:
Originally Posted by ryder
Hey everybody,
I am trying to change the css of an epub with Calibre conversion, but it's not working at all.
All I want to do is to change it from this:
</span></span></p><p class="calibre_">
to that:
</span></span></p><p class="calibre_"><br/>
So I just want to add <br/> at the end. It is not working through search and replace and also not in the Look & feel tab.
How is it possible to change it without going to edit the ebook and use the search and replace option there?
Thank you.
|
Are you sure the code is
Code:
</span></span></p><p class="calibre_">
and does not include a newline?
Code:
</span></span></p>
<p class="calibre_">
The REGEX would include
Code:
</span></span></p>\s+<p class="calibre_">
But why not use a top margin or have the conversion insert a blank line between paragraphs?