PyRSS2Gen 并在描述标签中嵌入 html

发布于 2024-10-17 08:50:15 字数 271 浏览 7 评论 0原文

我想使用 html 标签格式化描述内容。当我尝试将内容括在 here]]> 中时,它无法正常工作,因为它转义了一些括号,在某些 RSS 中显示 OK查看者,但在其他人中显示 ]]>

如果我尝试避免 CDATA 并在整个过程中使用转义字符,这大部分都有效,但是 $lt;p$gt;显示为

而不是新代码。

有什么想法吗?

I want to format the content of the description using html tags. When I try to enclose the content in <![CDATA[content<p>here]]> it doesn't work properly, as it escapes some of the brackets, displaying O.K. in some RSS viewers, but displaying the ]]> in others.

If I try to avoid the CDATA and use escaped characters throughout, this mostly works, but $lt;p$gt; gets displayed as <p> rather than a new code.

Any thoughts?

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

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

发布评论

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

评论(2

浪推晚风 2024-10-24 08:50:15

根据 RSS 2.0 规范中的示例,您可以使用 CDATA 和转义符 "Encoding & item -级别描述”

According to examples in the RSS 2.0 specification you can use both CDATA and the escapes "Encoding & item-level descriptions".

月隐月明月朦胧 2024-10-24 08:50:15

我进一步研究了我的问题,问题是 PyRSS2Gen 使用 python 的 sax 库,它没有 CDATA 的概念,至少在编写 XML 时是这样。我的解决方案只是放弃 PyRSS2Gen 并直接使用 minidom,它确实理解 CDATA 部分。这确实意味着一些额外的代码行。

一旦我的描述标签内的 html 文本正确地包含在 CDATA 部分中,原始 xml 看起来就很好,并且它也在我尝试的 3 个 RSS 阅读器中以我想要的方式显示。

I looked into my problem some more and the problem is that PyRSS2Gen uses python's sax library, which has no concept of CDATA, at least when writing out XML. My solution was just to drop PyRSS2Gen and directly use minidom, which does understand CDATA sections. That did mean some extra lines of code.

Once the html text inside my description tag was properly enclosed in a CDATA section, the raw xml looked fine and it also displayed the way I wanted it in 3 RSS readers I tried.

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