Created
February 15, 2014 17:27
-
-
Save LeslieZhu/9022333 to your computer and use it in GitHub Desktop.
An example of RSS xml file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<rss version="2.0"> | |
<channel> | |
<title>博客名字</title> | |
<link>博客网址</link> | |
<description> | |
<![CDATA[ 博客简介]]> | |
</description> | |
<language>zh-CN</language> | |
<generator>哪个工具生成的RSS(genrss.py)</generator> | |
<webMaster> | |
<![CDATA[ 作者]]> | |
</webMaster> | |
<ttl>120</ttl> | |
<image> | |
<title> | |
<![CDATA[ 头像标题 ]]> | |
</title> | |
<url>头像链接</url> | |
<link>博客链接</link> | |
</image> | |
<item> | |
<title>文章标题</title> | |
<link> | |
文章链接 | |
</link> | |
<author> | |
<![CDATA[ 文章作者 ]]> | |
</author> | |
<guid isPermaLink="true"> | |
文章链接 | |
</guid> | |
<category> | |
<![CDATA[文章关键字 ]]> | |
</category> | |
<pubDate>文章生成日期</pubDate> | |
<description> | |
<![CDATA[文章正文]]> | |
</description> | |
<comments> | |
文章链接 | |
</comments> | |
</item> | |
</channel> | |
</rss> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment