oxygengine-core 0.15.0

Core module for Oxygen Engine
Documentation
1
2
3
4
5
6
7
separator = _{ "|" }
no_separator = _{ "\\|" | !separator }
text = { (no_separator ~ ANY)* }
identifier = { ASCII_ALPHANUMERIC+ }
param = _{ no_separator ~ "@" ~ identifier  }
chunk = _{ param | text }
sentence = { SOI ~ chunk ~ (separator ~ chunk)* ~ EOI }