Tools, FAQ, Tutorials:
Atom Document Structure
What Is the Atom Document Structure?
✍: FYIcenter.com
An Atom feed document must have a root element called "feed".
Within in the "feed" element, one or more "entry" elements are enclosed.
The high level structure of an Atom feed document looks like:
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>...</title>
<link href="/..."/>
<updated>...</updated>
<author>
<name>...</name>
</author>
<id>...</id>
<entry>
<title>...</title>
<link href="/..."/>
<id>...</id>
<updated>...</updated>
<summary>...</summary>
</entry>
<entry>
...
</entry>
...
</feed>
As you can see, an Atom XML document can be described as:
⇒ Atom Feed Files Are XML Documents
⇐ Atom Specification - RFC 4287
2017-09-28, ∼2182🔥, 0💬
Popular Posts:
How To Avoid the Undefined Index Error in PHP? If you don't want your PHP page to give out errors as...
How to add images to my EPUB books Images can be added into book content using the XHTML "img" eleme...
What is the Azure AD v1.0 OpenID Metadata Document? Azure AD v1.0 OpenID Metadata Document is an onl...
Where to find tutorials on Using Azure API Management Developer Portal? Here is a list of tutorials ...
How to use "{{...}}" Liquid Codes in "set-body" Policy Statement? The "{{...}}" Liquid Codes in "set...