Index: doc/build.md ================================================================== --- doc/build.md +++ doc/build.md @@ -1,5 +1,6 @@ + # How to build Grammalecte ## Required ## * Python 3.6 Index: doc/syntax.txt ================================================================== --- doc/syntax.txt +++ doc/syntax.txt @@ -55,27 +55,28 @@ 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 +> `[` word boundary +> `<` no word boundary right boundary (R): - `]` word boundary - `>` no word boundary +> `]` 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]" +> `i` case insensitive +> `s` case sensitive +> `u` uppercase allowed for lowercased characters +>> i.e.: "Word" becomes "W[oO][rR][dD]" Examples: __[i]__ pattern ____ pattern