I found a statement by Doitsu on a Sigil thread:
"Quote:
Originally Posted by pgfiore
Using this example, "èacquistabile" (code view), I need two arrow hits to move from "è" to "a"...
That's because the accented è character is composed of two characters:
Code:
e U+0065 LATIN SMALL LETTER ECode:
̀̀ U+300 COMBINING GRAVE ACCENTI.e. this behavior is by design, because most Unicode editors behave this way.
Most likely your display issues are caused by these and other combining characters. Try replacing them with combined characters.
For example, replace U+0065 & U+0300 with:
Code:
è U+00E8 LATIN SMALL LETTER E WITH GRAVEYou can select this an other accented characters with the Windows Character Map.
EDIT: To identify the problematic Unicode characters, visit this website, paste a paragraph with accented characters and missing spaces into the Unicode Text box, click Convert and post the results here."
This could be of interest, maybe?
|