Definition
content:encoded in RSS and content nodes in Atom can carry full HTML content beyond short summaries.
Use full content fields when your feed should include complete article text.
Capability checks
content:encoded in RSS and content nodes in Atom can carry full HTML content beyond short summaries.
Full content feeds support richer reader experiences and improve downstream text analysis quality.
FeedInspector maps content fields to ext.contentEncoded and computes contentAvgLength and hasFullContentLikely.
Problem: Full body is missing and only teaser text is published.
Fix: Include full HTML body in content:encoded or Atom content.
Problem: HTML is escaped twice and appears as raw tags.
Fix: Emit valid HTML once inside CDATA or proper XML text.
content:encoded in item
<item xmlns:content="http://purl.org/rss/1.0/modules/content/">
<title>Full article</title>
<description>Short summary.</description>
<content:encoded><![CDATA[<p>Full body text.</p>]]></content:encoded>
</item>