For a new project we\'re writing documentation about the Django template system. We use Django for the documentation project itself too, so Django picks up all our exam
A possible solution is to write the templates as usual (with {{ x }}
), but save them as .txt (or any other extension you want). Write a script the runs over these files, and automatically creates the .html for you, by doing the reverse of templatetag (replacing {{
with {% templatetag openvariable %}
etc). Make sure the code runs after you update the templates.