diff --git a/page.go b/page.go index 4802587..c919072 100644 --- a/page.go +++ b/page.go @@ -2,7 +2,6 @@ package main import ( "bytes" - "html" "text/template" ) @@ -54,5 +53,5 @@ func GenerateEpisodeDescription(imageURL, title, content string) string { return "

" + title + "

" + content + ">" } - return html.EscapeString(buf.String()) + return buf.String() }