Tested tool guide
Tested browser tools
Checked August 16, 2026
What RSS Feed Builder does, with a checked example
Type a channel name, link, and description, then add one row per post with a title, summary, date, and URL, and the tool emits the XML for a complete RSS 2.0 or Atom feed. It escapes special characters, converts dates into the format each standard requires, and validates the result as well-formed XML before showing it. The surprise for most users is that a feed is a static file you host: the tool produces the XML text, but you must save it, upload it to your site, and regenerate it whenever your content changes.
Worked example
A concrete input and expected output from the current implementation.
Input
Channel: title 'Field Notes', link https://example.com, description 'Notes from the field'. Item: title 'Launch day', link https://example.com/launch, description 'Our first post & a sale', date 2026-08-16. Format: RSS 2.0.
->
Expected output
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title>Field Notes</title>
<link>https://example.com</link>
<description>Notes from the field</description>
<item>
<title>Launch day</title>
<link>https://example.com/launch</link>
<description>Our first post & a sale</description>
<pubDate>Sun, 16 Aug 2026 12:00:00 GMT</pubDate>
</item>
</channel>
</rss> The entered values land in the required RSS 2.0 elements, the ampersand becomes & because a raw & would break the XML, and the date is converted to the RFC 822 form the spec mandates - August 16, 2026 falls on a Sunday, hence 'Sun, 16 Aug 2026'. The result is well-formed XML that passes the tool's validation.