mixin-block-with-space.js 482 B

123456789101112131415
  1. function template(locals) {
  2. var pug_html = "", pug_mixins = {}, pug_interp;
  3. pug_mixins["m"] = pug_interp = function(id) {
  4. var block = this && this.block, attributes = this && this.attributes || {};
  5. pug_html = pug_html + "<div>";
  6. block && block();
  7. pug_html = pug_html + "</div>";
  8. };
  9. pug_mixins["m"].call({
  10. block: function() {
  11. pug_html = pug_html + "This text should appear";
  12. }
  13. });
  14. return pug_html;
  15. }