Maxim Yaskevich
Maxim Yaskevich
@capouch You can pass your own content as component's children like so: ``` jsx ```
Could you show an example? Not really getting what you mean
Hi @tjvr Got it. Is there a way to handle ebnf modifiers? Do I have to use tokenizer for that?
Any thoughts @tjvr ?
I just replaced one field that was previously using EBNF modifiers with a custom rule for `:+`: ``` recordIdChar -> [0-9A-Z] recordId -> recordIdChar | recordId recordIdChar ``` And I...