Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 811 Bytes

README.md

File metadata and controls

43 lines (29 loc) · 811 Bytes

HamlJS Loader for Webpack

Import "static" Haml files as modules in your webpack project. Returns a template function that can be called with your passed-in local attributes.

This is a fork of haml-haml-loader.

Setup

Add to your webpack config module.loaders:

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

Rendering templates

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

.template
  %h1= title

webpack/assets/javascripts/modules/my_module.js

import Template from "../templates/my_template.html.haml"

const title = "My Title"
const template = Template({ title })

document.append(template)

will return the HTML:

<div class="template">
  <h1>My Title</h1>
</div>