mirror of
https://github.com/kemko/liquid.git
synced 2026-01-01 15:55:40 +03:00
534 B
534 B
title, description
| title | description |
|---|---|
| upcase | Liquid filter that converts a string to uppercase. |
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 }} ```