mirror of
https://github.com/kemko/liquid.git
synced 2026-01-07 02:35:40 +03:00
466 B
466 B
title
| title |
|---|
| upcase |
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 }} ```