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
<div class="entry">
{{#if author}}
<h1>{{firstName}} {{lastName}}</h1>
{{/if}}
</div>
Preparation-Script
// Handlebars.registerHelper('loud', function(string) {
// return string.toUpperCase()
// });
Input
{
author: true,
firstName: "Yehuda",
lastName: "Katz",
}
Output
<div class="entry">
<h1>Yehuda Katz</h1>
</div>