I'm looking for a way to write my Handlebars templates using HAML, in a Ember.js application embedded in a Rails 3.2 project.
Handlebars is 1.0.rc.1, require'd from ember-rails gem 0.7.0
Ember is 1.0.pre-90-g60e3c05
Anyway, my template now looks like that :
<div id="container">
This is my test
</div>
I'd like it to be like this :
#container
This is my test
BTW, I'v seen James Harton's Hamlbars but I could not figure out how to make it work. It kept outputing Ember.TEMPLATES["templates/choose_resort"] = Ember.Handlebars.compile("This is my test"); instead of the intended :
<div id="container">
This is my test
</div>
(even the div block is missing in the what-seems-to-be-uncompiled-code returned)
Any hint would be greatly appreciated. Thanks in advance.