/hbs-plugin

a mod of the text requirejs plugin to work with handlebars templates

Primary LanguageJavaScriptOtherNOASSERTION

hbs-plugin

A RequireJS/AMD loader plugin for loading handlebars template resources.

This is based on the text plugin here: https://github.com/requirejs/text

Example

require(
    ["hbs!templates/mytemplate"],
    function(template){
        var templateConfig = {test:"test"};
        document.write(template(templateConfig));
    }
);

License

Dual-licensed -- new BSD or MIT.