Skip to content

Instantly share code, notes, and snippets.

@clofresh
Created August 10, 2009 01:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save clofresh/164969 to your computer and use it in GitHub Desktop.
Save clofresh/164969 to your computer and use it in GitHub Desktop.
Header "%% Erliki".
Nonterminals phrase wikilink word.
Terminals string '[[' ']]' '<' '>'.
Rootsymbol phrase.
phrase -> word : '$1'.
phrase -> word phrase : ['$1', '$2'].
wikilink -> '[[' string ']]' : {'wikilink', '$2'}.
word -> wikilink : '$1'.
word -> string : '$1'.
word -> '<' : '$1'.
word -> '>' : '$1'.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment