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

476 B

title
title
downcase

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