1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-13 14:07:20 +00:00

Fix markdown invoke sequence (#7513)

This commit is contained in:
Lunny Xiao
2019-07-19 04:23:27 +08:00
committed by techknowlogick
parent be9d67f887
commit 8ad64574ee

View File

@ -153,7 +153,7 @@ func RenderRaw(body []byte, urlPrefix string, wikiMarkdown bool) []byte {
}
body = blackfriday.Markdown(body, renderer, exts)
return body
return markup.SanitizeBytes(body)
}
var (