mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-30 06:21:13 +00:00

The string concatenation operator `~` is present in jinja and tera: <https://jinja.palletsprojects.com/en/stable/templates/#other-operators>. While it's not the most important operator, it can come in handy e.g. with filters: `{{ a|upper }}{{ b|upper }}` → `{{ (a ~ b)|upper }}`.