格式化 html Django-cms

Formatting html Django-cms

我创建了一个应用程序,我可以在其中放置 html 这样的代码

<h2>where we are?</h2> 
<h4>Main Offices</h4>

我的问题是当我在我的视图中显示时,我看到带有 html 标签的文本,

我尝试了这个 {{ item|striptags }} 但这从页面中删除了 html 标签,即使我检查了它看起来像字符串的元素 "where we are? Main Offices"

在 django-cms 中如何在视图中看不到 html 标签,但是当我检查元素时标签就在那里!

Django automatically escapes the output of every variable tag, to protect you from Cross-site scripting。您可以使用 safe 模板过滤器禁用自动转义:{{ item|safe }}.