tarbell-project / tarbell

A Flask-based static site authoring tool.
https://tarbell.readthedocs.io/en/latest/index.html
BSD 3-Clause "New" or "Revised" License
165 stars 32 forks source link

TEMPLATE_TYPES is a list #430

Closed eyeseast closed 8 years ago

eyeseast commented 8 years ago

Switches tarbell.app.TEMPLATE_TYPES back to a list (from a tuple) so blueprints can still do this:

from tarbell.app import TEMPLATE_TYPES

TEMPLATE_TYPES.append("text/css")
TEMPLATE_TYPES.append("application/javascript")

Closes #429.