Using Vue, Mustache, or other curly brace based templates in Hugo

Someone has to take the step back :slight_smile:

new Vue({
    delimiters: ['<<', '>>'],
}
var customTags = [ '<%', '%>' ];
Mustache.render(template, view, {}, customTags);
Mustache.tags = customTags;

Mustache.render uses the customTags once, Mustache.tags would set them for the whole duration (until you set something else)