我正在尝试使用 Django 制作网络漫画 RSS 提要,但我无法在描述字段中放置图像,因为 html 代码被转义,即使它位于 {% autoescape off %} 块中。
这是我的描述模板:
{% autoescape off %}
<img src="{{obj.img.url}}"/>
{% endautoescape %}
这是结果:
<img src="http://localhost:8000/media/comics/001__.png"/>
我怎样才能避免这种自动转义?