Overview
Comment: | [fr] formateur de texte: tiret en début de paragraphe avant points |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | fr |
Files: | files | file ages | folders |
SHA3-256: |
d27b7d08ffd6cbad0164ef7a706bcac6 |
User & Date: | olr on 2017-12-22 15:08:40 |
Other Links: | manifest | tags |
Context
2017-12-25
| ||
13:19 | [build] merge graphspell: graphspell as independant package check-in: 37ee1a1b0d user: olr tags: trunk, build | |
2017-12-24
| ||
17:50 | [build] graphspell as separate package check-in: ab436f24fc user: olr tags: build, graphspell | |
2017-12-22
| ||
15:08 | [fr] formateur de texte: tiret en début de paragraphe avant points check-in: d27b7d08ff user: olr tags: trunk, fr | |
09:12 | [fx] new description for WebExtension (necessary to be found via search engine) check-in: c008f61541 user: olr tags: trunk, fx | |
Changes
Modified gc_lang/fr/modules-js/textformatter.js from [1785f80db7] to [287866f4c9].
︙ | |||
83 84 85 86 87 88 89 | 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | - + - + | [/…\.(?!\.)/g, "…"] ], "ts_n_dash_middle": [ [/ [-—] /g, " – "], [/ [-—],/g, " –,"] ], "ts_m_dash_middle": [ [/ [-–] /g, " — "], [/ [-–],/g, " —,"] ], "ts_n_dash_start": [ [/^[-—][ ]/gm, "– "], [/^– /gm, "– "], |
︙ |
Modified gc_lang/fr/modules/textformatter.py from [5aeef53f27] to [a7ee2e0921].
︙ | |||
66 67 68 69 70 71 72 | 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | - + - + | ("…[.](?![.])", "…") ], "ts_n_dash_middle": [ (" [-—] ", " – "), (" [-—],", " –,") ], "ts_m_dash_middle": [ (" [-–] ", " — "), (" [-–],", " —,") ], "ts_n_dash_start": [ ("^[-—][ ]", "– "), ("^– ", "– "), |
︙ |
Modified gc_lang/fr/oxt/TextFormatter/tf_tabrep.py from [63ab70d6b7] to [c833d6dc1f].
︙ | |||
197 198 199 200 201 202 203 | 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 | - + + - + + | (" —,", " –,", False, True) ], "typo4a": [ # cadratin ("^-[ ]", "— ", True, True), ("^–[ ]", "— ", True, True), ("^— ", "— ", True, True), ("^«[ ][—–-][ ]", "« — ", True, True), |
︙ |