escape html tags in markdown instead of removing them

This commit is contained in:
Ryan Stafford 2024-05-10 12:49:06 -04:00
parent fb219c0f00
commit edd773c2fc

View file

@ -7,6 +7,7 @@ import (
"encoding/json"
"errors"
"fmt"
"html"
"html/template"
"io"
"net/http"
@ -154,6 +155,8 @@ 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)