Ok, so I opened one of the chapter HTML files, and the only reference to hyphenation I see is:
Code:
<style type="text/css" id="kobostylehacks">div#book-inner { margin-top: 0; margin-bottom: 0; }
* {
/* Vendor-prefixed CSS properties for hyphenation. Keep -webkit first since
* some user agents also recognize -webkit properties and will apply them.
*/
-webkit-hyphens: auto;
-webkit-hyphenate-limit-after: True;
-webkit-hyphenate-limit-before: True;
-webkit-hyphenate-limit-chars: True True True;
-webkit-hyphenate-limit-lines: True;
/* CSS4 standard properties for hyphenation. If a property isn't represented
* in the standard, don't put a vendor-prefixed property for it above.
*/
hyphens: auto;
hyphenate-limit-chars: True True True;
hyphenate-limit-lines: True;
hyphenate-limit-last: page;
}
h1, h2, h3, h4, h5, h6, td {
-webkit-hyphens: none !important;
hyphens: none !important;
}
</style>
The
-webkit-hyphenate... settings just state
True, instead of the numbers in the KoboTouch settings? Again, I could be totally missing it. Thanks!