Files
cheatsheets/handlebars.js.md
T
Rico Sta. Cruz 511de900ba Formatting updates (#2133)
- Update some sheets which have very long sections
- Remove `layout: 2017/sheet` (everything has the same layout now)
- Remove outdated sheets
2024-04-03 18:30:24 +11:00

544 B

title, category, weight
title category weight
Handlebars.js JavaScript libraries -1

{% raw %}

Helpers

Handlebars.registerHelper('link_to', function() {
  return "<a href='" + this.url + "'>" + this.body + "</a>";
})
var context = { posts: [{url: "/hello-world", body: "Hello World!"}] }
var source = "<ul>{{#posts}}<li>{{{link_to}}}</li>{{/posts}}</ul>"
var template = Handlebars.compile(source)
template(context)

Would render:

<ul>
  <li><a href='/hello-world'>Hello World!</a></li>
</ul>

{% endraw %}