实际处理方法
根据频道设置与有限条目块生成 RSS 2.0 XML。
可复现示例
示例输入title=321Kit Updates
link=https://example.com/
description=New local tools
---
title=SEO tools
link=https://example.com/seo
description=New browser-local SEO tools
date=2026-07-15T00:00:00Z
预期结果 <?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title>321Kit Updates</title>
<link>https://example.com/</link>
<description>New local tools</description>
<item>
<title>SEO tools</title>
<link>https://example.com/seo</link>
<guid isPermaLink="true">https://example.com/seo</guid>
<description>New browser-local SEO tools</description>
<pubDate>Wed, 15 Jul 2026 00:00:00 GMT</pubDate>
</item>
</channel>
</rss>
- 1
在“频道与条目块”区域粘贴内容、输入参数或选择需要处理的文件。
- 2
根据任务选择 “生成 RSS”;页面会在当前浏览器中完成处理。
- 3
检查“RSS 2.0 XML”中的结果,确认无误后再复制或下载。