RSS <source> Element

Definitie en gebruik

<source> Element specificeert een derde partij als bron voor dit project.

Eigenschap

Eigenschap Beschrijving
url Verplicht. Specificeer de link van de bron.

Voorbeeld

<?xml version="1.0" encoding="ISO-8859-1" ?>
<rss version="2.0">
<channel>
  <title>CodeW3C.com Hoofdpagina</title>
  <link>http://www.codew3c.com</link>
  <description>Gratis webbouw cursussen</description>
  <item>
    <title>RSS Cursus</title>
    <link>http://www.codew3c.com/rss</link>
    <description>Nieuwe RSS cursus op CodeW3C.com</description>
    <source url="http://www.codew3c.com">codew3c.com</source>
  </item>
</channel>
</rss>