Import haml-coffee files as modules in your webpack project. Returns a rendered template.
Add to your webpack config module.loaders:
{ test: /\.html\.hamlc$/, loader: "haml" }
.template
%h1= @title
require("templates/my_template.html.hamlc")
will return the HTML:
<div class="template">
<h1></h1>
</div>
require("!haml?title=test!templates/my_template.html.hamlc")
will return the HTML:
<div class="template">
<h1>test</h1>
</div>
haml-loader
can be nicely chained with ngtemplate-loader
{ test: /\.html\.hamlc$/, loaders: ['ngtemplate?relativeTo=assets/javascripts', 'haml'] },