Is it possible to call a function with arguments with Mustache.js
{{somefunction(somevalue)}}thank you
Check out the section on Lambdas at http://mustache.github.com/mustache.5.html
Mustache template block:
{{#someFunction}}someValue{{/someFunction}}
Function block:
someFunction : function () {
return function(val, render) {
return "I passed in this value: " + render(val);
};
}
Output:
I passed in this value: someValue