用于描述线程注释的联合格式?

时间:2010-09-12 16:06:13

标签: rss comments atom-feed syndication-feed

如何用Atom / RSS描述评论树?

2 个答案:

答案 0 :(得分:0)

你可以在RSS中使用html但是<和>必须以& lt;和& gt;

<description>
...
&lt;!-- comments --&gt;
&lt;ul&gt;
  &lt;li&gt;comment1&lt;/li&gt;
  &lt;li&gt;comment2&lt;/li&gt;
  &lt;li&gt;comment3&lt;/li&gt;
  &lt;li&gt;comment4&lt;/li&gt;
&lt;ul&gt;
</description>

答案 1 :(得分:0)

有一个draft standard通过线程讨论扩展Atom,但不再有效。这是一条包含评论的Feed:

<feed xmlns="http://www.w3.org/2005/Atom"
       xmlns:thr="http://purl.org/syndication/thread/1.0">
   <id>http://www.example.org/myfeed</id>
   <title>My Example Feed</title>
   <updated>2005-07-28T12:00:00Z</updated>
   <link href="http://www.example.org/myfeed" />
   <author><name>James</name></author>
   <entry>
     <id>tag:example.org,2005:1</id>
     <title>My original entry</title>
     <updated>2006-03-01T12:12:12Z</updated>
     <link
       type="application/xhtml+xml"
       href="http://www.example.org/entries/1" />
     <summary>This is my original entry</summary>
   </entry>
   <entry>
     <id>tag:example.org,2005:1,1</id>
     <title>A response to the original</title>
     <updated>2006-03-01T12:12:12Z</updated>
     <link href="http://www.example.org/entries/1/1" />
     <thr:in-reply-to
       ref="tag:example.org,2005:1"
       type="application/xhtml+xml"
       href="http://www.example.org/entries/1"/>
     <summary>This is a response to the original entry</summary>
   </entry>
</feed>