Skip to content

Instantly share code, notes, and snippets.

@djedr
Created January 9, 2022 23:55
Show Gist options
  • Save djedr/92deb963f6f12ebcdab4f71572b9ca57 to your computer and use it in GitHub Desktop.
Save djedr/92deb963f6f12ebcdab4f71572b9ca57 to your computer and use it in GitHub Desktop.
A nice grammar for Jevko
Value = Subvalues Suffix
Subvalue = Prefix "[" Value "]"
Subvalues = *Subvalue
Suffix = *Char
Prefix = *Char
Char = Escape / %x0-5a / %x5c / %x5e-5f / %x61-10ffff
Escape = "`" ("`" / "[" / "]")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment