I'm doing something like this:
img(src="#{getGravatarUrl username}")
Where my helper function looks like this:
...
getGravatarUrl: function (username) { ... },
...
I think that roughly equals what's said in the meteor-jade readme. However, this literally compiles to <img src="#{getGravatarUrl username}">. Am I doing something wrong?