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
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…