I want to do something like this:
{{user.name.toLowerCase()}}
but I get this error:
Error: Parse error on line X: ...tatus {{us
If you're just trying to display some text as lowercased in HTML (regardless of whether or not it's generated by handlebars), you can use CSS and apply text-transform like so:
.css-class-here { text-transform: lowercase; }