shithub: hugo

Download patch

ref: c31e083ead1d494d7ebaa3947028ea6cee302f32
parent: 9436f0b0c31d2df49647e301ab3d6e2053b356b8
author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
date: Sat Sep 23 06:20:11 EDT 2017

Fix the docs helper tool

--- a/tpl/cast/docshelper.go
+++ b/tpl/cast/docshelper.go
@@ -17,6 +17,7 @@
 	"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.
@@ -23,7 +24,7 @@
 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
 
--