View Single Post
Old 02-08-2012, 12:18 PM   #4
DiapDealer
Grand Sorcerer
DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.DiapDealer ought to be getting tired of karma fortunes by now.
 
DiapDealer's Avatar
 
Posts: 28,679
Karma: 205039118
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
I assume you're converting the mobi to epub with calibre and then editing with sigil?

It seems you have your work cut out for you. Unfortunately there are <span class="bold> spans around each (and every) individual paragraph in the main body of the text. You could go into the CSS file and change:
Code:
.bold {
    font-weight: bold
    }
to
Code:
.bold {
    font-weight: normal
    }
But looking at the structure of the book, that will also get rid of stuff that should be bolded.

It looks like there's only two standard body paragraph classes (one for indented, and one for unindented), so maybe there's some regex that would help you remove the bold spans from just those paragraphs.
DiapDealer is online now   Reply With Quote