Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在遵循本书实用 django 项目之前,我已经使用 markdown 完成了此操作,但现在我希望在我的博客上使用 CKEditor,它只会吐出我检查过的文档的原始 HTML。我想我只是没有使用正确的过滤器?如果有人知道答案,请告诉我。谢谢
如果要在模板上显示 HTML,则需要使用safe过滤器(文档)。
safe
例子:
{{ my_html_text|safe }}