Skip to content

Instantly share code, notes, and snippets.

@halilim
Created October 13, 2014 09:25
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 halilim/9e5ed977dcd6409032fb to your computer and use it in GitHub Desktop.
Save halilim/9e5ed977dcd6409032fb to your computer and use it in GitHub Desktop.
Valid and invalid RSS - Try both with http://validator.w3.org/feed/#validate_by_input
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Test</title>
<link>http://example.com</link>
<description>Just a RSS test</description>
<item>
<title>A title with some &ccedil;&apos;s and &uuml;&apos;s</title>
<link>http://example.com/test</link>
<description>Item description</description>
</item>
</channel>
</rss>
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Test</title>
<link>http://example.com</link>
<description>Just a RSS test</description>
<item>
<title>A title with some ç&apos;s ü&apos;s</title>
<link>http://example.com/test</link>
<description>Item description</description>
</item>
</channel>
</rss>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment