https://www.wikiwand.com/zh-tw/Atom_(%E6%A8%99%E6%BA%96)#/%E7%A4%BA%E4%BE%8B
Atom Feed Documents and Atom Entry Documents.
<?xml version="1.0" encoding="utf-8"?> // 編碼宣告
<feed xmlns="http://www.w3.org/2005/Atom">
<title>Example Feed</title>
// 主標題
<subtitle>A subtitle.</subtitle>
// 次標
<link href="http://example.org/feed/" rel="self" />
// link
<link href="http://example.org/" />
// link
<id>urn:uuid:60a76c80-d399-11d9-b91C-0003939e0af6</id>
// id
<updated>2003-12-13T18:30:02Z</updated>
// 更新時間
<author>
<name>John Doe</name> // 名字
<email>[email protected]</email> // email
</author>
// 作者資訊
<entry>
<title>Atom-Powered Robots Run Amok</title>
// 主標題
<link href="http://example.org/2003/12/13/atom03" />
// link
<link rel="alternate" type="text/html" href="http://example.org/2003/12/13/atom03.html"/>
// 備用/替換 link
<link rel="edit" href="http://example.org/2003/12/13/atom03/edit"/>
// 編輯 link
<id>urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a</id>
// id
<updated>2003-12-13T18:30:02Z</updated>
// 更新日期
<summary>Some text.</summary>
// 摘要
</entry>
// 條目
</feed>
<?xml version="1.0" encoding="utf-8"?>
// 編碼宣告
https://msdn.microsoft.com/zh-tw/library/ms256048(v=vs.120).aspx
編碼宣告可識別要使用哪個編碼來代表文件中的字元。
xmln
// XML命名空間(XML namespace)
https://www.wikiwand.com/zh-tw/XML%E5%91%BD%E5%90%8D%E7%A9%BA%E9%97%B4
xmlns
属性可以在文档中定义一个或多个可供选择的命名空间。该属性可以放置在文档内任何元素的开始标签中。该属性的值类似于 URL,它定义了一个命名空间,浏览器会将此命名空间用于该属性所在元素内的所有内容。
http://www.runoob.com/tags/att-a-rel.html
rel
// rel 属性规定当前文档与被链接文档之间的关系。 e.g. 文档的可选版本(例如打印页、翻译页或镜像)。
urn
// "統一資源名稱"(英語:Uniform Resource Name)
https://www.wikiwand.com/zh-tw/%E7%BB%9F%E4%B8%80%E8%B5%84%E6%BA%90%E6%A0%87%E5%BF%97%E7%AC%A6
URI 的最常見的形式是 URL(統一資源定位符),經常指定為非正式的網址。
更罕見的用法是 URN(統一資源名稱),其目的是通過提供一種途徑,用於在特定的"命名空間"資源的標識,以補充網址。
URL 是一種 URI,它標識一個網際網路資源,並指定對其進行操作或取得該資源的方法。
URN 是基於某命名空間、通過名稱指定資源的 URI。
人們可以通過 URN 來指出某個資源,而無需指出其位置和獲得方式。資源無需是基於網際網路的。
例如,URN urn:ISBN 0-395-36341-1
指定標識系統(即國際標準書號 ISBN)和某資源在該系統中的唯一表示的 URI。它可以允許人們在不指出其位置和獲得方式的情況下談論這本書。