mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-21 07:37:43 +00:00
12 lines
255 B
ReStructuredText
12 lines
255 B
ReStructuredText
``title``
|
|
=========
|
|
|
|
The ``title`` filter returns a titlecased version of the value. Words will
|
|
start with uppercase letters, all remaining characters are lowercase:
|
|
|
|
.. code-block:: jinja
|
|
|
|
{{ 'my first car'|title }}
|
|
|
|
{# outputs 'My First Car' #}
|