Created
January 9, 2022 23:55
-
-
Save djedr/92deb963f6f12ebcdab4f71572b9ca57 to your computer and use it in GitHub Desktop.
A nice grammar for Jevko
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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