capitalize
Makes the first character of a string capitalized and converts the remaining characters to lowercase.
Input
{{ "title" | capitalize }}Output
TitleOnly the first character of a string is capitalized, so later words are not capitalized:
Input
{{ "my GREAT title" | capitalize }}Output
My great titleLast updated