aboutsummaryrefslogtreecommitdiffstats
path: root/gopherproxy.go
diff options
context:
space:
mode:
Diffstat (limited to 'gopherproxy.go')
-rw-r--r--gopherproxy.go9
1 files changed, 6 insertions, 3 deletions
diff --git a/gopherproxy.go b/gopherproxy.go
index 82215c5..e41af3d 100644
--- a/gopherproxy.go
+++ b/gopherproxy.go
@@ -223,9 +223,12 @@ func ListenAndServe(bind, robotsfile, uri string) error {
223 } 223 }
224 224
225 funcMap := template.FuncMap{ 225 funcMap := template.FuncMap{
226 "safeCss": func(s string) template.CSS { 226 "safeHtml": func(s string) template.HTML {
227 return template.CSS(s) 227 return template.HTML(s)
228 }, 228 },
229 "safeCss": func(s string) template.CSS {
230 return template.CSS(s)
231 },
229 } 232 }
230 233
231 tpl, err = template.New("gophermenu").Funcs(funcMap).Parse(tpltext) 234 tpl, err = template.New("gophermenu").Funcs(funcMap).Parse(tpltext)