Quote:
Originally Posted by Sirtel
Not all ebooks have hyphenation specified in the css, in which case I guess there's some default hyphenation setting the Kobo will use.
The way I do it is as follows:
First, I convert an epub to epub to bulk remove all existing hyphenation rules, if any (I usually do this with several ebooks at once). In the conversion settings (Look & Feel - Styling - Other css properties) I add
-epub-hyphens, -webkit-hyphens, -moz-hyphens, adobe-hyphenate, hyphens
After that, I use the Modify Epub plugin (Append Extra css) to bulk insert the following code in all those converted epubs:
Code:
body {
-epub-hyphens: none;
adobe-hyphenate: none;
-webkit-hyphens: none;
-moz-hyphens: none;
hyphens: none;
}
|
Okay, so this can be done directly through Calibre's conversion utility. I'll have to try it. Thanks!