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
Not sure how to best describe this, and I couldn't find anything matching in the documentation. But basically what I need is to create a larger string, and use the templating features for that. The documentation mentions "filter sections":
{% filter upper %}
Hello
{% endfilter %}
and what I'd need would be something like
{% set upper %}
Hello
{% endset %}
which stores Hello in the variable upper. The important bit is that I can then use all of the templating features inside it.
Not sure if there are other ways to achieve it
The text was updated successfully, but these errors were encountered:
Not sure how to best describe this, and I couldn't find anything matching in the documentation. But basically what I need is to create a larger string, and use the templating features for that. The documentation mentions "filter sections":
and what I'd need would be something like
which stores
Hello
in the variableupper
. The important bit is that I can then use all of the templating features inside it.Not sure if there are other ways to achieve it
The text was updated successfully, but these errors were encountered: