hugolib: Do not tolower result from Page.GetParam
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 29 Dec 2017 07:58:38 +0000 (08:58 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 29 Dec 2017 07:58:38 +0000 (08:58 +0100)
commit1c114d539b0755724443fe28c90b12fe2a19085a
tree5f32a91410dbe38b50c45d72ec12051249fa41d1
parente14129461983204cab6105a31fd83834254bd3d9
hugolib: Do not tolower result from Page.GetParam

We still do lowering of the param strings in some internal use of this, but the exported `GetParam` method is changed to a more sensible default.

This was used for the `disqus_title` etc. in the internal Disqus template, which was obviously not right.

If you really want to lowercase your params, do it with `.GetParam "myparam" | lower` or similar.

Fixes #4187
hugolib/page.go
hugolib/pageGroup.go
hugolib/page_taxonomy_test.go
hugolib/page_test.go
hugolib/site.go