Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
D
DHParser
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
badw-it
DHParser
Commits
b2699837
Commit
b2699837
authored
Apr 20, 2017
by
di68kap
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
c230b2e2
ade77081
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
DHParser/ebnf.py
DHParser/ebnf.py
+1
-1
examples/LaTeX/LaTeX.ebnf
examples/LaTeX/LaTeX.ebnf
+3
-3
No files found.
DHParser/ebnf.py
View file @
b2699837
...
...
@@ -436,7 +436,7 @@ class EBNFCompiler(CompilerBase):
arg
=
node
.
result
[
-
1
]
argstr
=
str
(
arg
)
if
arg
.
parser
.
name
!=
'symbol'
:
node
.
add_error
((
'Retrieve Operator "%s" requires a symbol
s
, '
node
.
add_error
((
'Retrieve Operator "%s" requires a symbol, '
'and not a %s.'
)
%
(
prefix
,
str
(
arg
.
parser
)))
return
str
(
arg
.
result
)
if
str
(
arg
)
in
self
.
directives
[
'complement'
]:
...
...
examples/LaTeX/LaTeX.ebnf
View file @
b2699837
...
...
@@ -25,9 +25,9 @@ partext = text | PARSEP
text = cfgtext | brackets
cfgtext = chunk | escaped | WSPC
escaped
= /\\[%$&]/
brackets = /[\[\]]/ # left and right square brackets
: [ ]
chunk
= /[^\\%$&\{\}\[\]\s\n]+/ # some piece of text excluding whitespace,
ESCAPED
= /\\[%$&]/
BRACKET = /[\[\]]/ # left or right square bracket
: [ ]
TEXTCHUNK
= /[^\\%$&\{\}\[\]\s\n]+/ # some piece of text excluding whitespace,
# linefeed and special characters
WSPC = /[ \t]*\n?(?!\s*\n)[ \t]*/ # whitespace, including at most one linefeed
LF = /[ \t]*\n(?!\s*\n)/ # a linefeed, but not an empty line (i.e. par)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment