mirror of
https://github.com/kemko/liquid.git
synced 2026-01-06 02:05:41 +03:00
539 B
539 B
title, description
| title | description |
|---|---|
| upcase | Liquid filter that capitalizes every character in a string. |
Makes each character in a string uppercase. It has no effect on strings which are already all uppercase.
Input
```liquid {% raw %} {{ "Parker Moore" | upcase }} {% endraw %} ```Output
```text {{ "Parker Moore" | upcase }} ```Input
```liquid {% raw %} {{ "APPLE" | upcase }} {% endraw %} ```Output
```text {{ "APPLE" | upcase }} ```