RSS <description> 元素
<channel> 的 <description> 元素定义了 channel 的描述/摘要
<channel> 元素描述 RSS feed,该元素有三个必需的子元素:
- <title> - 定义频道的标题
- <link> - 定义指向频道的超连接
- <description> - 描述频道
语法
<channel> <description>简单教程,简单编程</description> </channel>
范例
<?xml version="1.0" encoding="UTF-8" ?> <rss version="2.0"> <channel> <title>简单教程首页</title> <link>https://www.twle.cn</link> <description>简单教程,简单编程</description> </channel> </rss>