Skip to content

Instantly share code, notes, and snippets.

@enjoysmath
Created May 29, 2013 22:17
Show Gist options
  • Save enjoysmath/5674290 to your computer and use it in GitHub Desktop.
Save enjoysmath/5674290 to your computer and use it in GitHub Desktop.
mixin(grammar(`
SDLang:
Tag <- Id Value* Attribute* ('=' '{' Tag* '}')?
Value <-
Id <- &NonDigit (IdChars)+
NonDigit <- ![0-9]
IdChars <- ![` ~ "`" ~ `=:{}#/"\']
`));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment