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, ∼2280🔥, 0💬
Popular Posts:
How to add images to my EPUB books Images can be added into book content using the XHTML "img" eleme...
How to create the Hello-3.0.epub package? I have all required files to create Hello-3.0.epub. To cre...
Where to get the detailed description of the JSON.stringify() Function in JavaScript? Here is the de...
Where to find tutorials on Visual Studio? I want to know How to learn Visual Studio. Here is a large...
How To Set session.gc_divisor Properly in PHP? As you know that session.gc_divisor is the frequency ...