Skip to content

Instantly share code, notes, and snippets.

@agrtechnology
Last active June 15, 2021 04:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agrtechnology/97f7c0f5e2f950f21775a9efa0a9d790 to your computer and use it in GitHub Desktop.
Save agrtechnology/97f7c0f5e2f950f21775a9efa0a9d790 to your computer and use it in GitHub Desktop.
An example of a RSS feed shown in XML Part of the following page on our tech glossary: https://agrtech.com.au/glossary/rss-really-simple-syndication/ Source/credit: “Rss” Wikipedia, 27 Sept. 2002, en.wikipedia.org/wiki/RSS#Example. Accessed 15 June 2021.
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title>RSS Title</title>
<description>This is an example of an RSS feed</description>
<link>http://www.example.com/main.html</link>
<copyright>2020 Example.com All rights reserved</copyright>
<lastBuildDate>Mon, 06 Sep 2010 00:01:00 +0000 </lastBuildDate>
<pubDate>Sun, 06 Sep 2009 16:20:00 +0000</pubDate>
<ttl>1800</ttl>
<item>
<title>Example entry</title>
<description>Here is some text containing an interesting description.</description>
<link>http://www.example.com/blog/post/1</link>
<guid isPermaLink="false">7bd204c6-1655-4c27-aeee-53f933c5395f</guid>
<pubDate>Sun, 06 Sep 2009 16:20:00 +0000</pubDate>
</item>
</channel>
</rss>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment