aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/twig/twig/doc/filters/capitalize.rst
blob: 10546a1f3ec8292d27435c619abc05e1aa7f7e77 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
``capitalize``
==============

The ``capitalize`` filter capitalizes a value. The first character will be
uppercase, all others lowercase:

.. code-block:: jinja

    {{ 'my first car'|capitalize }}

    {# outputs 'My first car' #}