View Single Post
Old 06-21-2024, 07:21 PM   #40
rcentros
eReader Wrangler
rcentros ought to be getting tired of karma fortunes by now.rcentros ought to be getting tired of karma fortunes by now.rcentros ought to be getting tired of karma fortunes by now.rcentros ought to be getting tired of karma fortunes by now.rcentros ought to be getting tired of karma fortunes by now.rcentros ought to be getting tired of karma fortunes by now.rcentros ought to be getting tired of karma fortunes by now.rcentros ought to be getting tired of karma fortunes by now.rcentros ought to be getting tired of karma fortunes by now.rcentros ought to be getting tired of karma fortunes by now.rcentros ought to be getting tired of karma fortunes by now.
 
rcentros's Avatar
 
Posts: 7,894
Karma: 52566355
Join Date: Mar 2013
Location: Boise, ID
Device: PB HD3, GL3, Voyage, Clara HD
Quote:
Originally Posted by Sirtel View Post
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!
rcentros is offline   Reply With Quote