Subject: | Can't apply filters to just one variable |
I want to HTML-filter a variable which is part of a longer string:
[% title = some_html _ (user-input | html) %]
That, unfortunately, will fail with a parse error:
unexpected token (|)
If I remove the parentheses, the whole right side of the assignment is
HTML-filtered, which is not desired.