This website works better with JavaScript.
Home
Explore
Help
Sign In
jmg
/
gitmirror
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
39
Wiki
Activity
Browse Source
Fixed issue in examples.conf
tags/gm/2021-09-23T00Z/github.com--lark-parser-lark/0.5.1
Erez Shinan
8 years ago
parent
96ebe94963
commit
6c41a618a5
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
examples/conf.py
+ 2
- 2
examples/conf.py
View File
@@ -18,8 +18,8 @@ from lark import Lark
parser = Lark(r"""
start: _NL? section+
section: "[" NAME "]" _NL item+
item: NAME "=" VALUE _NL
VALUE: /./
*
item: NAME "=" VALUE
?
_NL
VALUE: /./
+
%import common.CNAME -> NAME
%import common.NEWLINE -> _NL
Write
Preview
Loading…
Cancel
Save