Files
liquid/_filters/downcase.md
2019-07-28 16:27:13 -04:00

539 B

title, description
title description
downcase Liquid filter that coverts a string to lowercase.

Makes each character in a string lowercase. It has no effect on strings which are already all lowercase.

Input

```liquid {% raw %} {{ "Parker Moore" | downcase }} {% endraw %} ```

Output

```text {{ "Parker Moore" | downcase }} ```

Input

```liquid {% raw %} {{ "apple" | downcase }} {% endraw %} ```

Output

```text {{ "apple" | downcase }} ```