Quote:
Originally Posted by GERGE
So, why does the plugin adds adobe-hyphenate: none to the css?
Is there a legimate reason to cripple hyphenation?
|
Nook Simple Touch Reader and Nook STR w/Glo both have a bug that will sometimes prevent the display of the rest of a paragraph after an auto hyphenated word.
B&N refused to acknowledge the problem and I can't find the bug report post on their site anymore, but other people confirmed the same issue.
Rather than have to explain to each Nook user who came along how to fix it, I made it the default for everyone. I believe you're the first user to have any problem with it.
You can change it by putting your own output_css setting in personal.ini:
Code:
[epub]
## output background color--only used by html and epub (and ignored in
## epub by many readers). Included below in output_css--will be
## ignored if not in output_css.
background_color: ffffff
## Allow customization of CSS. Make sure to keep at least one space
## at the start of each line and to escape % to %%. Also need
## background_color to be in the same section, if included in CSS.
## 'adobe-hyphenate: none;' prevents hyphenation on newer Nooks
## STR(wG) (1.2.1+ for sure)
output_css:
body { background-color: #%(background_color)s;
text-align: justify;
margin: 2%%; }
pre { font-size: x-small; }
sml { font-size: small; }
h1 { text-align: center; }
h2 { text-align: center; }
h3 { text-align: center; }
h4 { text-align: center; }
h5 { text-align: center; }
h6 { text-align: center; }
.CI {
text-align:center;
margin-top:0px;
margin-bottom:0px;
padding:0px;
}
.center {text-align: center;}
.cover {text-align: center;}
.full {width: 100%%; }
.quarter {width: 25%%; }
.smcap {font-variant: small-caps;}
.u {text-decoration: underline;}
.bold {font-weight: bold;}