Skip to main content

capitalize

string | capitalize
returns string

Capitalizes the first word in a string and downcases the remaining characters.

{{ 'this sentence should start with a capitalized word.' | capitalize }}

Output

This sentence should start with a capitalized word.
Was this page helpful?