Allow themes to define output formats, media types and params
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 18 Mar 2018 10:07:24 +0000 (11:07 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 21 Mar 2018 08:22:19 +0000 (09:22 +0100)
commite9c7b6205f94a7edac0e0df2cd18d1456cb26a06
tree7c71d49c556f22497c3e0072ac25a3375f690074
parent3d1a6e109ce9b25fc2e9731098a82fb4c0abff68
Allow themes to define output formats, media types and params

This allows a `config.toml` (or `yaml`, ´yml`, or `json`)  in the theme to set:

1) `params` (but cannot override params in project. Will also get its own "namespace", i.e. `{{ .Site.Params.mytheme.my_param }}` will be the same as `{{ .Site.Params.my_param }}` providing that the main project does not define a param with that key.
2) `menu` -- but cannot redefine/add menus in the project. Must create its own menus with its own identifiers.
3) `languages` -- only `params` and `menu`. Same rules as above.
4) **new** `outputFormats`
5) **new** `mediaTypes`

This should help with the "theme portability" issue and people having to copy and paste lots of setting into their projects.

Fixes #4490
12 files changed:
Gopkg.lock
Gopkg.toml
commands/commandeer.go
commands/hugo.go
commands/server.go
helpers/path.go
hugolib/case_insensitive_test.go
hugolib/config.go
hugolib/config_test.go
hugolib/page_bundler_test.go
hugolib/site.go
hugolib/testhelpers_test.go