upcase - Liquid Filter Reference
On this page
Description
Makes each character in a string uppercase. It has no effect on strings which are already all uppercase.
| Property | Value |
|---|---|
| Return Type | string |
| Category | text |
Examples
liquid
{{ "title" | upcase }}
Output: TITLE
liquid
{{ "Hello!" | upcase }}
Output: HELLO!