try to fix issue #13

pull/144/head
Henrique Dias 2016-08-03 15:31:43 +01:00
parent e428e3b308
commit 53ec7417c6
2 changed files with 4 additions and 1 deletions

View File

@ -9,7 +9,7 @@
{{ if ne .Config.StyleSheet "" }} {{ if ne .Config.StyleSheet "" }}
<style> <style>
{{.Config.StyleSheet}} {{ Safe .Config.StyleSheet }}
</style> </style>
{{ end }} {{ end }}
</head> </head>

View File

@ -76,6 +76,9 @@ func (p Page) PrintAsHTML(w http.ResponseWriter, templates ...string) (int, erro
// execute the template if there aren't errors // execute the template if there aren't errors
functions := template.FuncMap{ functions := template.FuncMap{
"Defined": variables.Defined, "Defined": variables.Defined,
"Safe": func(s string) template.HTML {
return template.HTML(s)
},
} }
if p.Minimal { if p.Minimal {