Files
liquid/filters/upcase.md
2016-04-02 18:46:32 -04:00

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 }} ```