Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Fok <foka@debian.org>2015-02-22 00:46:12 +0300
committerAnthony Fok <foka@debian.org>2015-02-22 00:50:14 +0300
commit88e7c031a8cf7dfc058855f1bc18e3d35beac210 (patch)
tree6a17fe6537e7ef8bc6b1e1413fe141c8865e72e5
parentac189fd5149a50ae31551bd1474fd14b66709519 (diff)
[Docs] Clarify the switch to `canonifyurls = false` as default
Quote from @spf13: "I also think it's the better default and should continue to be the case going forward." Also mention the use of `hugo config` to check the current value of `canonifyurls`, thanks to suggestion by @bep. Fixes #802
-rw-r--r--docs/content/extras/urls.md55
1 files changed, 8 insertions, 47 deletions
diff --git a/docs/content/extras/urls.md b/docs/content/extras/urls.md
index d9f545a49..20bf27d8b 100644
--- a/docs/content/extras/urls.md
+++ b/docs/content/extras/urls.md
@@ -32,20 +32,14 @@ Organization](/content/organization/) for more details.
## Canonicalization
-<!--
-By default, all relative URLs encountered in the input will be canonicalized
-using `baseurl`, so that a link `/css/foo.css` becomes
-`http://yoursite.example.com/css/foo.css`.
-
-By setting `canonifyurls` to `false` will prevent this canonicalization.
--->
By default, all relative URLs encountered in the input are left unmodified,
-e.g. `/css/foo.css` would stay as `/css/foo.css`.
+e.g. `/css/foo.css` would stay as `/css/foo.css`,
+i.e. `canonifyurls` defaults to `false`.
By setting `canonifyurls` to `true`, all relative URLs would instead
be *canonicalized* using `baseurl`. For example, assuming you have
`baseurl = http://yoursite.example.com/` defined in the site-wide
-config.toml, the relative URL `/css/foo.css` would be turned into
+`config.toml`, the relative URL `/css/foo.css` would be turned into
the absolute URL `http://yoursite.example.com/css/foo.css`.
Benefits of canonicalization include fixing all URLs to be absolute, which may
@@ -56,46 +50,13 @@ Benefits of non-canonicalization include being able to have resource inclusion
be scheme-relative, so that http vs https can be decided based on how this
page was retrieved.
-### Caveat: Default of `canonifyurls` changed in v0.11
-
-<table class="table table-bordered">
-<thead>
-<tr>
-<th>Hugo Version</th>
-<th>Release Date</th>
-<th>Default</th>
-</tr>
-</thead>
+> Note: In the May 2014 release of Hugo v0.11, the default value of `canonifyurls` was switched from `true` to `false`, which we think is the better default and should continue to be the case going forward. So, please verify and adjust your website accordingly if you are upgrading from v0.10 or older versions.
-<tbody>
-<tr>
-<td>v0.9</td>
-<td>2013-11-15</td>
-<td><code>canonifyurls = true</code> <small>(non-configurable)</small></td>
-</tr>
+To find out the current value of `canonifyurls` for your website, you may use the handy `hugo config` command added in v0.13:
-<tr>
-<td>v0.10</td>
-<td>2014-03-01</td>
-<td><code>canonifyurls = true</code></td>
-</tr>
+ hugo config | grep -i canon
-<tr>
-<td>v0.11</td>
-<td>2014-05-29</td>
-<td><code>canonifyurls = false</code></td>
-</tr>
+Or, if you are on Windows and do not have `grep` installed:
-<tr>
-<td>v0.12</td>
-<td>2014-09-01</td>
-<td><code>canonifyurls = false</code></td>
-</tr>
+ hugo config | FINDSTR /I canon
-<tr>
-<td>v0.13-DEV</td>
-<td><small>in development</small></td>
-<td><code>canonifyurls = false</code> <small>(as of January 2015)</small></td>
-</tr>
-</tbody>
-</table>