sf-static/portfolio/node_modules/pug/test/output/mixin-block-with-space.js
2023-02-28 19:21:07 +01:00

15 lines
No EOL
482 B
JavaScript

function template(locals) {
var pug_html = "", pug_mixins = {}, pug_interp;
pug_mixins["m"] = pug_interp = function(id) {
var block = this && this.block, attributes = this && this.attributes || {};
pug_html = pug_html + "<div>";
block && block();
pug_html = pug_html + "</div>";
};
pug_mixins["m"].call({
block: function() {
pug_html = pug_html + "This text should appear";
}
});
return pug_html;
}