I want to do something like this:
{{user.name.toLowerCase()}}
but I get this error:
Error: Parse error on line X: ...tatus {{us
As simply explained in the doc :
Handlebars.registerHelper('toLowerCase', function(str) { return str.toLowerCase(); });
And just use it like this :
By {{toLowerCase author}}