Open s666p opened 1 year ago
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?
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?