Fix the Hugo.Generator tag so it can be used
authorbep <bjorn.erik.pedersen@gmail.com>
Mon, 19 Jan 2015 07:26:06 +0000 (08:26 +0100)
committerbep <bjorn.erik.pedersen@gmail.com>
Mon, 19 Jan 2015 07:26:06 +0000 (08:26 +0100)
hugolib/hugo.go

index b90373b3c3721883c12e66d473cd294d1576d2ec..011f7cad8095592109d45c9b5242b6c7e3d615d0 100644 (file)
@@ -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
 }