File: format.ebnf

package info (click to toggle)
padatious 0.4.8-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 264 kB
  • sloc: python: 1,504; makefile: 21
file content (6 lines) | stat: -rw-r--r-- 276 bytes parent folder | download
1
2
3
4
5
6
<expr> ::= <expr>* | '(' <options> ')' | <word> | <reference>
<options> ::= <roptions> | <loptions>
<roptions> ::= ( <expr> | '' ) ( '|' <roptions> )
<loptions> ::= ( <loptions> '|' ) ( <expr> | '' )
<reference> ::= '{' <word> '}'
<word> ::= ('a'| ... |'$'|'('|')')<word>