mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-21 07:37:43 +00:00
12 lines
233 B
ReStructuredText
12 lines
233 B
ReStructuredText
``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' #}
|