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