Moe-js v0.3

Code Blocks

Code blocks let you define local helper functions:

{{#code}}
function FormatPrice(val)
{
    if (val == 0)
        return "-";
    else
        return "$" + val.toFixed(2);
}
{{/code}}

<p>Item Price: {{FormatPrice(23.99)}}</p>

Subscribe for more like this. No spam, just fun tech stuff :)

Or, find me on Twitter: @toptensoftware.