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 }}
Code
{{ 'this sentence should start with a capitalized word.' | capitalize }}Output
This sentence should start with a capitalized word.
Output
This sentence should start with a capitalized word.Was this page helpful?