summaryrefslogtreecommitdiffstats
path: root/tpl
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-09-23 10:20:11 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2017-09-23 10:20:11 +0200
commitc31e083ead1d494d7ebaa3947028ea6cee302f32 (patch)
treec69af42d19ae76eb0f9dd91b93bf34106d92334e /tpl
parent9436f0b0c31d2df49647e301ab3d6e2053b356b8 (diff)
Fix the docs helper tool
Diffstat (limited to 'tpl')
-rw-r--r--tpl/cast/docshelper.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/tpl/cast/docshelper.go b/tpl/cast/docshelper.go
index e77c83d28..794ede3e3 100644
--- a/tpl/cast/docshelper.go
+++ b/tpl/cast/docshelper.go
@@ -17,13 +17,14 @@ import (
"github.com/gohugoio/hugo/deps"
"github.com/gohugoio/hugo/docshelper"
"github.com/gohugoio/hugo/tpl/internal"
+ "github.com/spf13/viper"
)
// This file provides documentation support and is randomly put into this package.
func init() {
docsProvider := func() map[string]interface{} {
docs := make(map[string]interface{})
- d := &deps.Deps{}
+ d := &deps.Deps{Cfg: viper.New()}
var namespaces internal.TemplateFuncsNamespaces