View Single Post
Old 03-29-2026, 12:10 PM   #2
theducks
Well trained by Cats
theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.theducks ought to be getting tired of karma fortunes by now.
 
theducks's Avatar
 
Posts: 31,656
Karma: 64144480
Join Date: Aug 2009
Location: The Central Coast of California
Device: Kobo Libra2,Kobo Aura2v1, K4NT(Fixed: New Bat.), Galaxy Tab A
Quote:
Originally Posted by ryder View Post
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?
theducks is offline   Reply With Quote