From 5d3aabcb32f33715eddb378f12541c7c412ee261 Mon Sep 17 00:00:00 2001 From: Marvin Pinto Date: Mon, 7 Mar 2016 15:05:51 -0500 Subject: [PATCH] Update the alias generated HTML files to conform to the W3C HTML spec - W3C recommends that there be a [whitespace character][1] between the `;` and the `url=` portions. - W3C also recommends that there be a [title][2] child in the `head` element [1]: https://www.w3.org/TR/html-markup/meta.http-equiv.refresh.html [2]: https://www.w3.org/TR/html-markup/head.html Closes #1933 --- docs/content/extras/aliases.md | 3 ++- target/htmlredirect.go | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/content/extras/aliases.md b/docs/content/extras/aliases.md index 9fd252cb..ec7dc695 100644 --- a/docs/content/extras/aliases.md +++ b/docs/content/extras/aliases.md @@ -72,9 +72,10 @@ Assuming a baseurl of `mysite.tld`, the contents of the html file will look some + http://mysite.tld/posts/my-original-url - + ``` diff --git a/target/htmlredirect.go b/target/htmlredirect.go index 1e2abec4..d8eac943 100644 --- a/target/htmlredirect.go +++ b/target/htmlredirect.go @@ -26,8 +26,8 @@ import ( jww "github.com/spf13/jwalterweatherman" ) -const alias = "" -const aliasXHtml = "" +const alias = "{{ .Permalink }}" +const aliasXHtml = "{{ .Permalink }}" var defaultAliasTemplates *template.Template -- 2.30.2