liquid-rust icon indicating copy to clipboard operation
liquid-rust copied to clipboard

Implement Tera's `filter` blocks

Open epage opened this issue 6 years ago • 0 comments

Seems like a pretty neat concept might be nice as an "extras" block (non-stdlib feature)

{% filter upper %}
    Hello
{% endfilter %}

See https://tera.netlify.app/docs/#filters

Workaround:

{% capture foo %}
Hello
{% endcapture %}
{{ foo | upper }}

epage avatar Dec 31 '18 16:12 epage