dont escape html, gets messy with code blocks

This commit is contained in:
Ryan Stafford 2024-05-27 14:20:45 -04:00
parent f95ae87385
commit 9de5ccb07f

View file

@ -7,7 +7,6 @@ import (
"encoding/json"
"errors"
"fmt"
"html"
"html/template"
"io"
"net/http"
@ -152,8 +151,6 @@ var funcMap = template.FuncMap{
body = re.ReplaceAllString(body, "\n***\n")
// community bangs
body = RegReplace(body, `([^\[])!([a-zA-Z0-9_]+)@([a-zA-Z0-9\-]+(\.[a-zA-Z0-9\-]+)+)`, `$1[!$2@$3](/c/$2@$3)`)
// escape HTML tags
body = html.EscapeString(body)
if err := md.Convert([]byte(body), &buf); err != nil {
fmt.Println(err)
return template.HTML(body)