function template(locals) { var pug_html = "", pug_mixins = {}, pug_interp; pug_mixins["foo"] = pug_interp = function() { var block = this && this.block, attributes = this && this.attributes || {}; pug_html = pug_html + "

bar

"; }; pug_mixins["foo"](); pug_html = pug_html + "

:)

"; return pug_html; }