Text Filters
Filter | Description | Example | Result |
---|---|---|---|
capitalize | Changes the first letter of a string to uppercase. | {{ "abc"|capitalize }} | Abc |
lower | Changes the letters of a string to lowercase. | {{ "AbC"|lower }} | abc |
upper | Changes the letters of a string to uppercase. | {{ "aBc"|upper }} | ABC |
trim | Removes leading and trailing spaces. | {{ " abc "|trim}} | abc |