Use Handlebars.js with Backbone.Marionette
Is it possible to use the Handlebars.js with the Backbone.Marionette extension without reimplementing the Views render function? It seems that Marionette is relying on the convention that you use Backbone.js with underscores templating engine. But I really like the handlebar approach so I'm asking if I can the high-level-tools of Marionette with handlebars. brettjonesdev A simple way to use Handlebars with Marionette is simply to define template in each View as a pre-compiled Handlebars template function. For instance: var MyView = Backbone.Marionette.ItemView.extend({ template: Handlebars