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 example variables in the sample code and tries to render them. The only way we found to get around this is to use {% templatetag %}, but that makes our code really unreadable. Is there maybe a way to make Django ignore all template variables in a specific section?
|
|
Due to limitations in the Django template lexer (like being a kludgy hack), this is impossible. However, if you are willing to put your example code in separate files, you can use the
And it won't parse the file, just include it verbatim. However, this also has limitations in that you can't use variables in the include path (i.e. if you move template locations, you have to rewrite or at least find-and-replace your template files), and you have to put the include path (i.e. |
|||||||||||
|
|
A possible solution is to write the templates as usual (with |
|||
|
|
|
I solved this by adding an "include_raw" template tag that behaves like the built-in "include" tag, but just doesn't parse or process the file passed to it. I'm running Django 1.2 under App Engine. Create a tags module (tags.py):
Register it:
Use it:
|
|||
|
|
|
If your source is HTML, the easiest solution would be to replace "{" and "}" with their respective HTML entities:
Example:
|
|||
|
|
|
Django 1.5 solves this problem with the verbatim template tag:
|
|||
|
|