gears-handlebars

Handlebars compiler for Gears


License
ISC
Install
pip install gears-handlebars==0.1.8

Documentation

gears-handlebars

Handlebars compiler for Gears. This package already includes the Handlebars source code for you, so you don't need to worry about installing it yourself.

Bundled Handlebars version: 2.0.0

Installation

Install gears-handlebars with pip:

$ pip install gears-handlebars

Requirements

gears-handlebars requires node.js to be installed in your system.

Usage

Add gears_handlebars.HandlebarsCompiler to environment's compilers registry:

from gears_handlebars import HandlebarsCompiler
environment.compilers.register('.handlebars', HandlebarsCompiler.as_handler())

If you use Gears in your Django project, add this code to its settings:

GEARS_COMPILERS = {
    '.handlebars': 'gears_handlebars.HandlebarsCompiler',
}