v1.9.1
Makes the first character of a string capitalized.
Input
1 | {{ "title" | capitalize }} |
Output
1 | Title |
capitalize only capitalizes the first character of a string, so later words are not affected:
Input
1 | {{ "my great title" | capitalize }} |
Output
1 | My great title |