在 GAE 中,我使用 jinja2 和 autoescape,一切正常。
import jinja2
jinja_env = jinja2.Environment(loader = jinja2.FileSystemLoader(template_dir), autoescape = True)
在一个模板中我不想要自动转义,所以我尝试像这样禁用它:
{% autoescape false %}
{{content}}
{% endautoescape %}
当需要渲染这个模板时,我会收到消息Encountered unknown tag 'autoescape'.