Federico

Results 6 issues of Federico

Hi, the rule below works for Italian in parsing number with three digits such as `tre cento venti` (320), but fails in recognizing the same expression without spaces (`trecentoventi`) which...

bug
IT (Italian)

Hi, thanks for the nice tool! Not sure if I'm setting something wrong but Trello integration doesn't always show links to the card: sometimes there is the emoji ↗️ with...

Try the following script: ```python from jsgf import parser, Grammar rule1 = parser.parse_rule_string('public = [la] lady;') rule2 = parser.parse_rule_string('public = [la] bady;') grammar = Grammar() grammar.add_rule(rule1) grammar.add_rule(rule2) print(grammar.compile()) matching1 =...

Hi, thanks for making this available. After running `make` I run into the following error: ``` clang: error: no such file or directory: './leap/LeapSDK/lib/arm64/libLeap.so' ``` I think it is related...