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
44782956
Commit
44782956
authored
Apr 19, 2017
by
Eckhart Arnold
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
synchronizing commit
parent
a0ac8cf6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
examples/LaTeX/LaTeX.ebnf
examples/LaTeX/LaTeX.ebnf
+3
-3
No files found.
examples/LaTeX/LaTeX.ebnf
View file @
44782956
...
...
@@ -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