From: bep Date: Mon, 19 Jan 2015 07:26:06 +0000 (+0100) Subject: Fix the Hugo.Generator tag so it can be used X-Git-Tag: v0.13~169 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=9712d06b;p=brevno-suite%2Fhugo Fix the Hugo.Generator tag so it can be used --- diff --git a/hugolib/hugo.go b/hugolib/hugo.go index b90373b3..011f7cad 100644 --- a/hugolib/hugo.go +++ b/hugolib/hugo.go @@ -1,5 +1,9 @@ package hugolib +import ( + "html/template" +) + const Version = "0.13-DEV" var ( @@ -12,7 +16,7 @@ var hugoInfo *HugoInfo // HugoInfo contains information about the current Hugo environment type HugoInfo struct { Version string - Generator string + Generator template.HTML CommitHash string BuildDate string }