RSS <language>元素
<language> 元素用于指定编写 RSS 文档时所使用的语言
这个语言不是开发语言,而是像 中文,英文,繁体中文 这种语言
提示: <language> 元素可以使聚合器根据语言对站点进行分组 提示: 查看标准的语言代码
语法
<language>zh-cn</language>
范例
<?xml version="1.0" encoding="UTF-8" ?> <rss version="2.0"> <channel> <title>简单编程首页</title> <link>https://www.twle.cn</link> <description>简单教程[www.twle.cn]以编程开发所需掌握的语言和知识入手...</description> <language>zh-cn</language> <item> <title>HTML 基础教程</title> <link>https://www.twle.cn/l/yufei/html/html-basic-index.html</link> <description>HTML 基础教程</description> </item> <item> <title>Python2 基础教程</title> <link>https://www.twle.cn/l/yufei/python27/python27-basic-index.html</link> <description>Python2 基础教程</description> </item> </channel> </rss>