Added some more compatibilty
parent
2a52a8ec53
commit
4269baf143
3
page.go
3
page.go
|
@ -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()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue