AlexanderPavlenko / haml-loader

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Haml-Coffee (Hamlc) Loader for Webpack

Import haml-coffee files as modules in your webpack project. Returns a rendered template.

Setup

Add to your webpack config module.loaders:

{ test: /\.html\.hamlc$/, loader: "haml" }

Rendering templates

webpack/assets/javascripts/templates/my_template.html.hamlc

.template
  %h1= @title

webpack/assets/javascripts/modules/my_module.js

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>

AngularJS

haml-loader can be nicely chained with ngtemplate-loader

{ test: /\.html\.hamlc$/, loaders: ['ngtemplate?relativeTo=assets/javascripts', 'haml'] },

About


Languages

Language:JavaScript 100.0%