如何禁用 django feed 中的自动转义?

发布于 2024-08-08 18:34:54 字数 161 浏览 4 评论 0原文

我使用 django feed 框架为我的网站组织 rss feed。 我需要添加一些超链接来提供项目,但所有这些都是 自动转义(“<”被替换为“&lt;”等)。 是否可以在我的提要中保留标签(据我所知,我不能使用 Feed 模板中的 {% autoescape off %} 标记)? 谢谢。

I use django feed framework to organize rss feeds for my website.
I need to put some hyperlinks to feed items, but al of them are
autoescaped ( "<" is replaced with "<" and so on).
Is it possible to keep tags in my feed (as I understand, I can't use
{% autoescape off %} tag in feed templates)?
Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

韬韬不绝 2024-08-15 18:34:54

阅读 Django 中的自动 HTML 转义 并尝试以下语法。其中 data 是保存链接的变量

{{ data|safe }}

Read up on Automatic HTML escaping in Django and try the following syntax. Where data is the variable which holds your link

{{ data|safe }}
荒芜了季节 2024-08-15 18:34:54

正如 jitter 提到的,您可以使用“安全”过滤器,但如果您想经常禁用自动转义,这会很烦人。 Django 还支持 {% autoescape off %} {% autoescape end %} 块,块内的所有内容都不会被自动转义。

已编辑:抱歉,我没有完全阅读您的问题,只是标题:)。为什么不能在 feed 中使用自动转义标签?对此没有任何限制。

As jitter mentioned you can use "safe" filter, but it's annoying if you want to disable autoescaping often. Django also supports {% autoescape off %} {% autoescape end %} blocks, everything inside is block won't be autoescaped.

EDITED: Sorry, I haven't read your question completely only title :). Why you can't use autoescape tag in feeds? There's no restriction about it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文