我想从 Nunjucks 中的导入文件中转义 HTML 代码。
{% include "item.html" %}
文件“item.html”包含以下代码:
<strong>bold text</strong>
我希望父文件(包括 item.html)具有以下输出:
<strong>bold text</strong>
我尝试用转义过滤器包围包含:
{% filter escape %}
{% include "item.html" %}
{% endfilter %}
但是,在这种情况下,文件不会被正确包含。有任何想法吗?