gmarche/vendor/twig/twig/doc/filters/capitalize.rst

12 lines
232 B
ReStructuredText

``capitalize``
==============
The ``capitalize`` filter capitalizes a value. The first character will be
uppercase, all others lowercase:
.. code-block:: twig
{{ 'my first car'|capitalize }}
{# outputs 'My first car' #}