views:

43

answers:

2

I'm looking for a templating language, that end users can safely edit to customize their html/theme of a web application.

Something to how http://www.liquidmarkup.org/ works.

A: 

The Django suite (among many others) has a templating language.

msw
are they safe for end users to edit though?
Blankman
It's as "safe" as (and nearly syntactically identical to) liquidmarkup. If that's your definition, then yes.
msw
+3  A: 

Few links to some templating engines in Python. I hope that's what you meant with your question.

http://jinja.pocoo.org/2/
http://docs.djangoproject.com/en/dev/topics/templates/
http://genshi.edgewall.org/
http://www.makotemplates.org/
http://www.cheetahtemplate.org/

Pickels