You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 15, 2026. It is now read-only.
Is it possible to extend a predefined such as the html grammar?
I'm trying to parse this:
funrender : Html {
<div>
<{ "Hello" }>
</div>
}
The function allows html inside the block, and inside the html, it also allows <{ getSomeText() }> referencing language specific variables, literals, etc. Could you point me towards parsing the <{ }> part?
Is it possible to extend a predefined such as the html grammar?
I'm trying to parse this:
The function allows html inside the block, and inside the html, it also allows
<{ getSomeText() }>referencing language specific variables, literals, etc. Could you point me towards parsing the<{ }>part?