downcase
string | downcase
returns string
Converts a string to all lowercase characters.
{{ product.title | downcase }}
Code
{{ product.title | downcase }}Data
{
"product": {
"title": "Health potion"
}
}Output
health potion
Output
health potionWas this page helpful?