RSS <generator>
Element
Definition and Usage
The <generator>
element specifies the name of the program used to generate the RSS feed.
Tips and Notes
Note: This element is typically used when the feed is created by an automated generator.
Example
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title>tutorialpro.org Home Page</title>
<link>https://www.tutorialpro.org</link>
<description>Free Programming Tutorials</description>
<generator>VSCode</generator>
<item>
<title>RSS Tutorial</title>
<link>https://www.tutorialpro.org/rss</link>
<description>tutorialpro.org Rss Tutorial</description>
</item>
</channel>
</rss>