GAE では、自動エスケープで jinja2 を使用していますが、すべてうまく機能します。
import jinja2
jinja_env = jinja2.Environment(loader = jinja2.FileSystemLoader(template_dir), autoescape = True)
あるテンプレートでは、自動エスケープが必要ないため、次のように無効にしようとしました:
{% autoescape false %}
{{content}}
{% endautoescape %}
このテンプレートをレンダリングするとき、メッセージが表示されますEncountered unknown tag 'autoescape'.