Added basic Jupyter Note support

This commit is contained in:
2020-09-24 20:16:04 +02:00
parent eeeed0f110
commit 8fefce1628
10 changed files with 84 additions and 1 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ class UnexpectedEndOfFileError(ErrorNode):
class BnfParser(BaseParser):
"""
Parser used to transform litteral into ParsingExpression
Parser used to transform literal into ParsingExpression
example :
a | b, c -> Sequence(OrderedChoice(a, b) ,c)