Words will start with uppercase letters, all remaining characters are lowercase:
{{ 'my first car' | title }}
{# outputs 'My First Car' #}
The title filter returns a titlecased version of the value.
Words will start with uppercase letters, all remaining characters are lowercase:
{{ 'my first car' | title }}
{# outputs 'My First Car' #}
Was this helpful?