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
If your source is HTML, the easiest solution would be to replace "{" and "}" with their respective HTML entities:
{ becomes {
{
} becomes }
}
Example:
To include some other file, you can use the {% include %} template tag. To include a variable, use {%{% varname }%}%.