You can copy the yaml-code below and use it as frontmatter for an example page.
You can paste this URL into GitHub Issues to share your setup when filing bugs or questions
Handlebars:
Template
{{#person}}
{{firstname}} {{lastname}}
{{/person}}
Preparation-Script
Handlebars.registerHelper('blockHelperMissing', function(context, options) {
return "Helper '"+options.name+"' not found. "
+ "Printing block: " + options.fn(context);
});
Input
{
person: {
firstname: "Yehuda",
lastname: "Katz",
},
}
Output
Helper 'person' not found. Printing block: Yehuda Katz