Overview
Comment: | [core] new regex for sentence splitting, generator of sentences |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | core |
Files: | files | file ages | folders |
SHA3-256: |
2777d8cef6c55a83e05311347076867a |
User & Date: | olr on 2019-05-24 12:21:35 |
Other Links: | manifest | tags |
Context
2019-05-24
| ||
14:12 | [core] sentence splitting: code clarification check-in: b52cb827b1 user: olr tags: trunk, core | |
12:21 | [core] new regex for sentence splitting, generator of sentences check-in: 2777d8cef6 user: olr tags: trunk, core | |
12:20 | [fr] commentaire check-in: 8fd1fbf7f3 user: olr tags: trunk, fr | |
Changes
Modified gc_core/js/text.js from [3e4e705e26] to [091c88a16c].
1 2 3 4 5 6 7 8 9 10 11 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | - + + + + + + + + | // JavaScript /* jshint esversion:6, -W097 */ /* jslint esversion:6 */ /* global require, exports, console */ "use strict"; var text = { |
︙ |
Modified gc_core/py/text.py from [71de26b7a5] to [dd28033587].
1 2 3 4 5 6 7 8 9 10 11 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | - + + + + + + + | #!python3 """ Text tools """ import re import textwrap from itertools import chain |
︙ |