Browse Source

Fixed issue in examples.conf

tags/gm/2021-09-23T00Z/github.com--lark-parser-lark/0.5.1
Erez Shinan 7 years ago
parent
commit
6c41a618a5
1 changed files with 2 additions and 2 deletions
  1. +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



Loading…
Cancel
Save