Overview
Comment: | [doc] update |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | doc |
Files: | files | file ages | folders |
SHA3-256: |
252f657d98ea2798e9e1e4545b6bb5a6 |
User & Date: | olr on 2017-06-07 12:15:47 |
Other Links: | manifest | tags |
Context
2017-06-07
| ||
16:25 | [doc] syntax.txt update check-in: 2cd7f6dc8b user: olr tags: trunk, doc | |
12:15 | [doc] update check-in: 252f657d98 user: olr tags: trunk, doc | |
08:15 | [fr] phonet_simil: flair/flaire, soupir/soupire, su/sue, tapir/tapirent check-in: 7fc8e4e27f user: olr tags: trunk, fr | |
Changes
Modified doc/build.md from [53d8414a96] to [0d772932a8].
1 2 3 4 5 6 7 | # How to build Grammalecte ## Required ## * Python 3.6 * Firefox Nightly * NodeJS | > | 1 2 3 4 5 6 7 8 | # How to build Grammalecte ## Required ## * Python 3.6 * Firefox Nightly * NodeJS |
︙ | ︙ |
Modified doc/syntax.txt from [20a5f2bb94] to [9f7f2dfbb1].
︙ | ︙ | |||
53 54 55 56 57 58 59 60 61 62 63 64 | written. Conditions are optional, i.e.: <<- ~>> replacement LCR flags means: * L: Left boundary for the regex * C: Case sensitiveness * R: Right boundary for the regex Left boundary (L): | > | | | | | | | | | 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | written. Conditions are optional, i.e.: <<- ~>> replacement LCR flags means: * L: Left boundary for the regex * C: Case sensitiveness * R: Right boundary for the regex Left boundary (L): > `[` word boundary > `<` no word boundary right boundary (R): > `]` word boundary > `>` no word boundary Case sensitiveness (C): > `i` case insensitive > `s` case sensitive > `u` uppercase allowed for lowercased characters >> i.e.: "Word" becomes "W[oO][rR][dD]" Examples: __[i]__ pattern __<s]__ pattern __[u>__ pattern __<s>__ pattern ... |
︙ | ︙ |