haml-loader

0.1.0 • Public • Published

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'] },

Readme

Keywords

none

Package Sidebar

Install

npm i haml-loader

Weekly Downloads

80

Version

0.1.0

License

MIT

Last publish

Collaborators

  • alerticus