|
|
|
|
Content Namespace Extension
Extension: Content
Extension Name: content
Purpose: The purpose of the Content
namespace is to include the actual content
of websites in an RSS feed.
Declaration: The name space for Content
is defined at http://purl.org/rss/1.0/modules/content/
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
Elements: Elements are supported
by RSS 2.0 at both the <channel> and
<item> level.
<content:encoded> can appear in both
the <channel> and <item> levels.
It typically contains an enhanced version
of the channel or item's description. This
is typically an HTML version of the description
that is either entity encoded or CDATA escaped.
Example:
<!-- Snipped for Brevity -->
<item>
<title>FeedForAll Content </title>
<link>http://www.feedforall.com/content-encoded.htm </link>
<description>Content is a namespace </description>
<content:encoded> <![CDATA[
insert html ]]> </content:encoded>
</item>
<!--Snipped for Brevity-->
|
|
|
|
|