From 5bcec88a3aca22601cd8af17acebca8cfd3a80d3 Mon Sep 17 00:00:00 2001 From: Cameron Little Date: Tue, 26 May 2020 20:05:50 +0200 Subject: [PATCH] Fix broken link in RSS templates page The trailing ) was being included in the parsed link, leading to it being `https://spf13.com/project/index.xml)` instead of `https://spf13.com/project/index.xml`. --- content/en/templates/rss.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/templates/rss.md b/content/en/templates/rss.md index d6edc31c9..ee179787f 100644 --- a/content/en/templates/rss.md +++ b/content/en/templates/rss.md @@ -29,7 +29,7 @@ RSS pages are of the type `Page` and have all the [page variables](/variables/pa ### Section RSS -A [section’s][section] RSS will be rendered at `/
/index.xml` (e.g., https://spf13.com/project/index.xml). +A [section’s][section] RSS will be rendered at `/
/index.xml` (e.g., [https://spf13.com/project/index.xml](https://spf13.com/project/index.xml)). Hugo provides the ability for you to define any RSS type you wish and can have different RSS files for each section and taxonomy.