Quote:
Originally Posted by franklekens
I've just tried manybooks.net again and see that I don't like their formatting. In their epubs, all paragraph breaks get a blank line, I *hate* that.
|
Never used manybooks, but out of interest I 've just downloaded a book from them. VERY basic formatting, but what bugs you is very easy to fix:
Open book in Sigil or the Calibre Editor, check for the standard paragraph class (in my example it's calibre5), open the stylesheet and change this
Code:
.calibre5 {
display: block;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
margin-top: 1em
}
to this:
Code:
.calibre5 {
display: block;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
margin-top: 0;
text-indent:1.2em
}
Done in a minute. I think Calibre (which I don't really use) also has ways to automatically change some formatting.