0.0.2 • Published 9 years ago
hogan-loader v0.0.2
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));