0.0.2 • Published 8 years ago

hogan-loader v0.0.2

Weekly downloads
1
License
WTFPL
Repository
github
Last release
8 years ago

Hogan loader for webpack

Compiles Mustache templates with Hogan and optionally html-minifier.

Install

$ npm i -S hogan-loader

Usage

module: {
    loaders: [ {
        test: /\.html$/,
        loader: 'hogan'
        // loader: 'hogan?minify'
        // loader: 'hogan?{ minify: { removeComments: false } }'
    } ]
}
var data = {minify: {removeComments: false}, data: {foo: 'bar'}};
var html = require('hogan!./template.html?' + JSON.stringify(data));

Documentation: Using loaders.

License

WTFPL