mirror of
https://github.com/kemko/liquid.git
synced 2026-01-01 15:55:40 +03:00
544 B
544 B
title, description
| title | description |
|---|---|
| downcase | Liquid filter that converts 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 }} ```