tplimpl: Allow text partials in HTML templates
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 15 Apr 2017 09:33:53 +0000 (11:33 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 16 Apr 2017 07:17:47 +0000 (09:17 +0200)
commit1cf29200b4bb0a9c006155ec76759b7f4b1ad925
treeb328cff2c47a3aa025423009bc16a4a02290f8c9
parent8ccee6717cba911296a80ad9801be906193f01d3
tplimpl: Allow text partials in HTML templates

Most obvius benefit of this is to include CSS partials with css file suffix into HTML templates.

A valid workaround would be to rename the file `mystyles.html`, but that doesn't work too good for external editors etc.

The css partial is  a method used in some themes before Hugo 0.20, but then it stopped working.

This commit reintroduces that behaviour.

Note that the regular layout lookups for text templates, i.e. "single.json" will be
prefixed with "_text/" on lookup and will only match in the text collection.

Fixes #3273
tpl/tplimpl/template.go
tpl/tplimpl/templateFuncster.go
tpl/tplimpl/template_funcs.go
tpl/tplimpl/template_funcs_test.go