<content type="application/xml"><a xmlns="..."><b><c/></b></a></content>
. The content could, alternatively, be linked to via the src attribute, <content type="application/xml" src="http://example.org/foo.xml"/>
.<content type="text/calendar">BEGIN:VCALENDAR...</content>
.<content type="image/jpeg">{Base64}</content>
.<content type="text/calendar" src="http://example.org/foo.cal"/>
, <content type="image/jpeg" src="http://example.org/foo.jpg" />
Per RFC4287:
The "atom:content" element either contains or links to the content of the entry. The content of atom:content is Language-Sensitive. atomInlineTextContent = element atom:content { atomCommonAttributes, attribute type { "text" | "html" }?, (text) } atomInlineXHTMLContent = element atom:content { atomCommonAttributes, attribute type { "xhtml" }, xhtmlDiv } atomInlineOtherContent = element atom:content { atomCommonAttributes, attribute type { atomMediaType }?, (text|anyElement) } atomOutOfLineContent = element atom:content { atomCommonAttributes, attribute type { atomMediaType }?, attribute src { atomUri }, empty } atomContent = atomInlineTextContent | atomInlineXHTMLContent | atomInlineOtherContent | atomOutOfLineContent
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|