Added some more compatibilty

main
Uriel Fanelli 2025-05-05 15:44:14 +02:00
parent 2a52a8ec53
commit 4269baf143
1 changed files with 1 additions and 2 deletions

View File

@ -2,7 +2,6 @@ package main
import ( import (
"bytes" "bytes"
"html"
"text/template" "text/template"
) )
@ -54,5 +53,5 @@ func GenerateEpisodeDescription(imageURL, title, content string) string {
return "<h3>" + title + "</h3>" + content + ">" return "<h3>" + title + "</h3>" + content + ">"
} }
return html.EscapeString(buf.String()) return buf.String()
} }