1``capitalize``
2==============
3
4The ``capitalize`` filter capitalizes a value. The first character will be
5uppercase, all others lowercase:
6
7.. code-block:: jinja
8
9    {{ 'my first car'|capitalize }}
10
11    {# outputs 'My first car' #}
12