Fix for page.GetParam() for JSON and TOML maps
authorAnthony Fok <foka@debian.org>
Sat, 24 Jan 2015 11:44:35 +0000 (04:44 -0700)
committerbep <bjorn.erik.pedersen@gmail.com>
Sat, 24 Jan 2015 14:25:44 +0000 (15:25 +0100)
commit803865f870f9d0b4aa0015b6bdec15d37c2fab00
tree04dd96c71c2666dc127d73931853ce6d6397a62b
parenta0c6dba305b86f638ec2d7d75a3a07248e4ae158
Fix for page.GetParam() for JSON and TOML maps

Setting per-page Blackfriday angledQuotes did not work
with TOML or JSON front matter, but it does work with YAML.

It turns out that page.Params("blackfriday") returns
type map[interface{}]interface{} for YAML, but
type map[string]interface{} for JSON and TOML.

This patch updates page.GetParam() to catch the latter,
with an error message if page.GetParam() does not recognize
a type.  A test is also added.
hugolib/page.go
hugolib/page_test.go