class Liquid::Filters::Capitalize
- Liquid::Filters::Capitalize
- Reference
- Object
Overview
capitalize
Makes the first character of a string capitalized.
Input {{ "title" | capitalize }}
Output Title
capitalize only capitalizes the first character of the string, so later words are not affected:
Input {{ "my great title" | capitalize }}
Output My great title