0.1.1 • Published 5 years ago

hamljs-loader v0.1.1

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

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>