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
For instance given the following template: Hi my name is {{ name }}
If name is defined as "John Doe" the result would be Hi my name is John Doe
But if name is undefined would render as Hi my name is {{ name }}
Currently it renders as Hi my name is
I would like to accomplish this without something like {{ name|default "{{ name }}" }}
The text was updated successfully, but these errors were encountered:
For instance given the following template:
Hi my name is {{ name }}
If name is defined as "John Doe" the result would be
Hi my name is John Doe
But if name is undefined would render as
Hi my name is {{ name }}
Currently it renders as
Hi my name is
I would like to accomplish this without something like
{{ name|default "{{ name }}" }}
The text was updated successfully, but these errors were encountered: