[Docs] Remove references to "ATOM" feeds - hugo - [fork] hugo port for 9front
(HTM) git clone git@git.drkhsh.at/hugo.git
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) LICENSE
---
(DIR) commit 5bfc812dc6f8d531b790a5d9d0d7be3da205c60d
(DIR) parent 6ee35f654f7ee856a9d3d3f70a48673b55957471
(HTM) Author: Anthony Fok <foka@debian.org>
Date: Mon, 12 Jan 2015 14:12:08 -0700
[Docs] Remove references to "ATOM" feeds
Thanks to @snej for reporting!
Fixes #790
Diffstat:
M docs/content/templates/list.md | 7 +++++--
M docs/content/templates/rss.md | 10 +++++++---
2 files changed, 12 insertions(+), 5 deletions(-)
---
(DIR) diff --git a/docs/content/templates/list.md b/docs/content/templates/list.md
@@ -60,7 +60,7 @@ A Taxonomy will be rendered at /`PLURAL`/`TERM`/
A Section’s RSS will be rendered at /`SECTION`/index.xml
-*Hugo ships with its own ATOM 2.0 RSS template. In most cases this will
+*Hugo ships with its own [RSS 2.0][] template. In most cases this will
be sufficient, and an RSS template will not need to be provided by the
user.*
@@ -76,7 +76,7 @@ can have different RSS files for each section and taxonomy.
A Taxonomy’s RSS will be rendered at /`PLURAL`/`TERM`/index.xml
-*Hugo ships with its own ATOM 2.0 RSS template. In most cases this will
+*Hugo ships with its own [RSS 2.0][] template. In most cases this will
be sufficient, and an RSS template will not need to be provided by the
user.*
@@ -387,3 +387,6 @@ If `where` or `first` receives invalid input or a field name that doesn’t exis
These are both template functions and work on not only
[lists](/templates/list/), but [taxonomies](/taxonomies/displaying/),
[terms](/templates/terms/) and [groups](/templates/list/).
+
+
+[RSS 2.0]: http://cyber.law.harvard.edu/rss/rss.html "RSS 2.0 Specification"
(DIR) diff --git a/docs/content/templates/rss.md b/docs/content/templates/rss.md
@@ -15,8 +15,9 @@ weight: 90
Like all other templates, you can use a single RSS template to generate
all of your RSS feeds, or you can create a specific template for each
-individual feed. Unlike other templates, *Hugo ships with its own ATOM
-2.0 RSS template. In most cases this will be sufficient, and an RSS
+individual feed. Unlike other templates, *Hugo ships with its own
+[RSS 2.0 template](#the-embedded-rss-xml:eceb479b7b3b2077408a2878a29e1320).
+In most cases this will be sufficient, and an RSS
template will not need to be provided by the user.*
RSS pages are of the type "node" and have all the [node
@@ -70,7 +71,7 @@ will be included in the RSS output. Example values are provided.
## The Embedded rss.xml
This is the RSS template that ships with Hugo. It adheres to the
-ATOM 2.0 Spec.
+[RSS 2.0 Specification][RSS 2.0].
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
@@ -98,3 +99,6 @@ ATOM 2.0 Spec.
on render… please don't include this in the template as it's not valid HTML.*
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
+
+
+[RSS 2.0]: http://cyber.law.harvard.edu/rss/rss.html "RSS 2.0 Specification"