You can use the `{{#filter.<method>}}` section variable to apply a text
processing filter using a specified `<method>` on template contents.
Examples:
```html
{{#filter.trim}} My whitespace will be trimmed. {{/filter.trim}}
{{#filter.striptags}}<p>My HTML tags will be removed.</p>{{/filter.striptags}}
{{#filter.nl2br}}The new line \n will be converted to a break tag.{{/filter.nl2br}}
{{#filter.spaceless}}Removes whitespace between HTML tags.{{/filter.spaceless}}
{{#filter.upper}}Makes the whole text uppercase.{{/filter.upper}}
{{#filter.lower}}Makes the whole text lowercase.{{/filter.lower}}
{{#filter.capitalize}}The first letter of the text will be uppercase.{{/filter.capitalize}}
{{#filter.truncate.100}}This text will be truncated when it exceeds 100 characters, and appended with a ... if it was truncated.{{/filter.truncate.100}}