lower
ToLower converts a string to lowercase.
ToLower converts a string to lowercase.
Input
string
Parameters
None
Returns
string
Examples
Normalize an email address
Input
email = "[email protected]"Template
{{ email | lower }}Output
Lowercase a heading
Input
title = "Hello, World!"Template
{{ title | lower }}Output
hello, world!How is this guide?