capitalize

Makes the first character of a string capitalized.

Input

{{ "title" | capitalize }}

Output

Title

capitalize only capitalizes the first character of a string, so later words are not affected:

Input

{{ "my great title" | capitalize }}

Output

My great title
PDF HTML Epub Powered by Read The Docs