We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello everyone. It is very important for my project to use a template engine that recursively renders expression pointing to other expression.
For example, we have the following context:
name->{{key1}} key1->{{key2}} key2->Jared
and this template: Hello, {{name}}
Hello, {{name}}
I need the following recursive behavior:
render(name) --> render(key1) ----> render(key2)
with output: Hello, Jared
Hello, Jared
Could you please tell me if this functionality is available? If so, how do I turn it on? If not, are there any other options?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello everyone. It is very important for my project to use a template engine that recursively renders expression pointing to other expression.
For example, we have the following context:
and this template:
Hello, {{name}}
I need the following recursive behavior:
render(name)
--> render(key1)
----> render(key2)
with output:
Hello, Jared
Could you please tell me if this functionality is available? If so, how do I turn it on? If not, are there any other options?
The text was updated successfully, but these errors were encountered: