The <code>title</code> filter returns a title-cased version of the value (each word starts with an uppercase letter).

For example:

```bash
{{ 'chargeover is great'|title }}

Will print "ChargeOver Is Great"
```