hamlc-loader

0.0.11 • Public • Published

Haml-Coffee (Hamlc) Loader for Webpack

Import haml-coffee files as modules in your webpack project. Returns a template function to render the template.

Setup

Add to your webpack config module.loaders:

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

Including templates in modules

webpack/assets/javascripts/templates/my_template.hamlc

.template
  %h1= @title

webpack/assets/javascripts/modules/my_module.js

MyTemplate = require("templates/my_template.hamlc")
MyTemplate({title: 'Go Boundless!'})

will return the HTML:

<div class="template">
  <h1>Go Boundless!</h1>
</div>

Readme

Keywords

none

Package Sidebar

Install

npm i hamlc-loader

Weekly Downloads

1,960

Version

0.0.11

License

MIT

Last publish

Collaborators

  • ericdfields