capitalize
Makes the first character of a string capitalized
Input
-
{{ 'hello world' | capitalize }}
Output
-
Hello world
capitalize
only capitalizes the first character of the string, so later words are not affected
Makes the first character of a string capitalized
{{ 'hello world' | capitalize }}
Hello world
capitalize
only capitalizes the first character of the string, so later words are not affected