Overview
Comment: | [graphspell] suggestions: include subscript numbers |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | graphspell |
Files: | files | file ages | folders |
SHA3-256: |
2e5953f34b87173bc10c4a7dd0196d37 |
User & Date: | olr on 2020-04-09 18:12:28 |
Other Links: | manifest | tags |
Context
2020-04-09
| ||
19:05 | [fr] ajustements check-in: 382af6a1ce user: olr tags: trunk, fr | |
18:12 | [graphspell] suggestions: include subscript numbers check-in: 2e5953f34b user: olr tags: trunk, graphspell | |
17:14 | [fr] ajustements check-in: 902cc35b2d user: olr tags: trunk, fr | |
Changes
Modified graphspell-js/char_player.js from [14e0bd8318] to [de17cf162c].
︙ | |||
64 65 66 67 68 69 70 | 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | - - - - - - - - - - + + + + + + + + + + | aConsonant: new Set("bcçdfghjklmnñpqrstvwxzBCÇDFGHJKLMNÑPQRSTVWXZ"), aDouble: new Set("bcdfjklmnprstzBCDFJKLMNPRSTZ"), // letters that may be used twice successively // Similar chars d1to1: new Map([ |
︙ |
Modified graphspell/char_player.py from [56f265c6d5] to [955184ee47].
︙ | |||
51 52 53 54 55 56 57 | 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | - - - - - - - - - - + + + + + + + + + + | aConsonant = set("bcçdfghjklmnñpqrstvwxzBCÇDFGHJKLMNÑPQRSTVWXZ") aDouble = set("bcdfjklmnprstzBCDFJKLMNPRSTZ") # letters that may be used twice successively # Similar chars d1to1 = { |
︙ |