Handlebars
テンプレート
{{#each people as |person|}}
  {{#> childEntry}}
    {{person.firstname}}
  {{/childEntry}}
{{/each}}
準備スクリプト
// Handlebars.registerHelper('loud', function(string) {
//    return string.toUpperCase()
// });
入力
{
  people: [
    { firstname: "Nils" },
    { firstname: "Yehuda" },
    { firstname: "Carl" },
  ],
}
出力
    Nils
    Yehuda
    Carl
最終更新日: 2020 年 2 月 25 日、午後 4:23:24