Nunjucks にインポートされたファイルから HTML コードをエスケープしたいと思います。
{% include "item.html" %}
ファイル「item.html」には、次のコードが含まれています。
<strong>bold text</strong>
親ファイル (item.html を含む) に次の出力が必要です。
<strong>bold text</strong>
インクルードをエスケープフィルターで囲んでみました:
{% filter escape %}
{% include "item.html" %}
{% endfilter %}
ただし、その場合、ファイルは正しく含まれません。何か案は?