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, ∼2670🔥, 0💬
Popular Posts:
How To Change Text Fonts for Some Parts of a Paragraph? If you want to change text fonts or colors f...
How to use the XML to JSON Conversion Tool at freeformatter.com? If you want to try the XML to JSON ...
Where to find tutorials on Python programming language? I want to learn Python. Here is a large coll...
How To Access a Specific Character in a String? Any character in a string can be accessed by a speci...
How to include additional claims in Azure AD v2.0 id_tokens? If you want to include additional claim...