From: Bjørn Erik Pedersen Date: Tue, 7 Feb 2017 03:43:30 +0000 (+0700) Subject: tpl: Must do a extra lookup of cloned base templates X-Git-Tag: v0.19~82 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=a89fb86c;p=brevno-suite%2Fhugo tpl: Must do a extra lookup of cloned base templates See #2549 Fixes #3013 --- diff --git a/tpl/template.go b/tpl/template.go index 1c71989f..9efb8869 100644 --- a/tpl/template.go +++ b/tpl/template.go @@ -109,6 +109,10 @@ func (*TemplateProvider) Clone(d *deps.Deps) error { for k, v := range t.overlays { vc := template.Must(v.Clone()) + // The extra lookup is a workaround, see + // * https://github.com/golang/go/issues/16101 + // * https://github.com/spf13/hugo/issues/2549 + vc = vc.Lookup(vc.Name()) vc.Funcs(tmpl.funcster.funcMap) tmpl.overlays[k] = vc }