mstch/test/data/partial/section_functions_in_partials.js
Daniel Sipka eb98985815 import
2015-04-09 20:41:27 +02:00

8 lines
116 B
JavaScript

({
bold: function(){
return function(text, render) {
return "<b>" + render(text) + "</b>";
}
}
})