--- title: Handlebars.js category: JavaScript libraries weight: -1 --- {% raw %} ### Helpers ```js Handlebars.registerHelper('link_to', function() { return "" + this.body + ""; }) ``` ```js var context = { posts: [{url: "/hello-world", body: "Hello World!"}] } var source = "" ``` ```js var template = Handlebars.compile(source) template(context) ``` Would render: ```html ``` {% endraw %}