Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 370 Bytes

README.md

File metadata and controls

16 lines (10 loc) · 370 Bytes

pyramid_mustache

Extensions for pyramid to use mustache as the rendering engine

In your main of init.py:

config.add_renderer(
    name='.html'
    , factory='pyramid_mustache.MustacheRendererFactory'
)

In your setup.py's message_extractors:

('templates/**.mustache', 'pyramid_mustache.extract_mustache', None),