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