Overview
| Comment: | [graphspell] suggestion: word simplification -> don’t replace e with diacritics by e, but by é |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | graphspell |
| Files: | files | file ages | folders |
| SHA3-256: |
e3abe93f37838815713ad2cc5c75591d |
| User & Date: | olr on 2020-04-14 16:29:26 |
| Other Links: | manifest | tags |
Context
|
2020-04-15
| ||
| 07:41 | [fr] ajustements check-in: f55c3eb61c user: olr tags: trunk, fr | |
|
2020-04-14
| ||
| 16:29 | [graphspell] suggestion: word simplification -> don’t replace e with diacritics by e, but by é check-in: e3abe93f37 user: olr tags: trunk, graphspell | |
| 15:26 | [graphspell] add 1 to distance between word and suggestion if word is split check-in: a00365529c user: olr tags: trunk, graphspell | |
Changes
Modified graphspell-js/char_player.js from [da4610d8df] to [60a9fdaff6].
| ︙ | |||
18 19 20 21 22 23 24 | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | - - - - - + + + + + |
for (let c of sWord) {
sNewWord += this._xTransCharsForSpelling.gl_get(c, c);
}
return sNewWord.normalize("NFC");
},
_xTransCharsForSimplification: new Map([
|
| ︙ |
Modified graphspell/char_player.py from [bdd45af7d0] to [d15991830e].
| ︙ | |||
13 14 15 16 17 18 19 | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | - - - - - + + + + + |
def spellingNormalization (sWord):
"nomalization NFC and removing ligatures"
return unicodedata.normalize("NFC", sWord.translate(_xTransCharsForSpelling))
_xTransCharsForSimplification = str.maketrans({
|
| ︙ |