]> git.immae.eu Git - github/wallabag/wallabag.git/blob - vendor/twig/twig/doc/filters/capitalize.rst
twig implementation
[github/wallabag/wallabag.git] / vendor / twig / twig / doc / filters / capitalize.rst
1 ``capitalize``
2 ==============
3
4 The ``capitalize`` filter capitalizes a value. The first character will be
5 uppercase, all others lowercase:
6
7 .. code-block:: jinja
8
9 {{ 'my first car'|capitalize }}
10
11 {# outputs 'My first car' #}