Files
liquid/_filters/upcase.md
2021-04-28 13:43:02 -04:00

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