From: Marvin Pinto Date: Mon, 7 Mar 2016 20:05:51 +0000 (-0500) Subject: Update the alias generated HTML files to conform to the W3C HTML spec X-Git-Tag: v0.17~307 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=5d3aabcb;p=brevno-suite%2Fhugo 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 --- 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