liquid-rust
liquid-rust copied to clipboard
Implement Tera's `filter` blocks
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 }}