Files
liquid/_filters/upcase.md
2019-09-11 10:46:41 -04:00

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