View Single Post
Old 06-22-2024, 03:08 AM   #46
quentincompson
Enthusiast
quentincompson began at the beginning.
 
Posts: 28
Karma: 10
Join Date: Jun 2024
Device: kindle 8
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;
}
Thank you for the instructions!
quentincompson is offline   Reply With Quote