Hello,
Is there a way to check that the good dic for hyphen is used ?
Currently I've got a test html page and the hyphenation is done but it's not the good hyphenation (like the Wikipedia page explains the french page named : Césure).
In the wikipedia page there are 4 examples ( see Exemples de césures) and if the hyphenation is done on the slash character that's wrong
So I don't know if it's a bug or an error i did myself.
<xml>
<DOCTYPE>
<html>
<head>
<style>
p.hyph {
color: red;
text-align: justify;
hyphens: auto;
hyphenate-patterns: url("hyph_fr_FR_UTF8.dic");
}
p.hyphsoft {
color: green;
text-align: justify;
hyphens: manual;
}
</style>
</head>
<body>
<h1>Without hyphens</h1>
<p>inconsistant aaa aaa inconsistant inconsistant bbbb inconsistant inconsistant inconsistant inconsistant
inconsistant inconsistant ee, inconsistant inconsistant cccc inconsistant inconsistant inconsistant inconsistant
inconsistant inconsistant inconsistant inconsistant
</p>
<h1>With hyphens</h1>
<p>inconsistant aaa aaa inconsistant inconsistant bbbb inconsistant inconsistant inconsistant inconsistant
inconsistant inconsistant ee, inconsistant inconsistant cccc inconsistant inconsistant inconsistant inconsistant
inconsistant inconsistant inconsistant inconsistant
</p>
<p>aaairaa culture ab, successive tôt i suc­ces­sive successive culture aaa successive suc­ces­sive successive culture aa suc­ces­sive culture successive suc­ces­sive bbbb culture suc­ces­sive zzzzz
culture suc­ces­sive successive successive eeee suc­ces­sive culture yyyy successive aa culture aaa culture aa </p>
</body>
</html>
In that code one word "inconsistant" is rendered "in-consistant" which is wrong like explained on Wikipedia.
Can someone point me to the right direction to solve this problem ?
Thanks in advance