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 order to share your setup when filing bugs or questions
Handlebars:
Template
<ul class="people_list">
{{#each people}}
<li>{{this}}</li>
{{/each}}
</ul>
Preparation-Script
// Handlebars.registerHelper('loud', function(string) {
// return string.toUpperCase()
// });
Input
{
people: [
"Yehuda Katz",
"Alan Johnson",
"Charles Jolley",
],
}
Output
<ul class="people_list">
<li>Yehuda Katz</li>
<li>Alan Johnson</li>
<li>Charles Jolley</li>
</ul>