Quote:
Originally Posted by ibu
At the moment, I'm looking for a way how to disable hiphenation with out a css style embedded in the original file.
|
A kobo_extras.css similar to this should do it, once the bug is fixed and you can add CSS to books with no CSS files:
Code:
* {
-moz-hyphens: none !important;
-webkit-hyphens: none !important;
hyphens: none !important;
}
I believe it's not possible to fully disable hyphenation without embedding CSS.