sanitize markdown

This commit is contained in:
Kirill Danshin 2017-01-19 18:31:17 +03:00
parent bc3434bb6a
commit 7cee227b4a
1 changed files with 10 additions and 7 deletions

17
repo.go
View File

@ -8,6 +8,7 @@ import (
"text/template"
"github.com/gorilla/mux"
"github.com/microcosm-cc/bluemonday"
"github.com/russross/blackfriday"
)
@ -59,14 +60,16 @@ func generateHTML() {
input, _ := ioutil.ReadFile(readmePath)
body := string(
blackfriday.Markdown(
input,
blackfriday.HtmlRenderer(
bfHTMLRendererOpts,
emtyStr,
emtyStr,
bluemonday.UGCPolicy().SanitizeBytes(
blackfriday.Markdown(
input,
blackfriday.HtmlRenderer(
bfHTMLRendererOpts,
emtyStr,
emtyStr,
),
bfMDOpts,
),
bfMDOpts,
),
)
c := &content{Body: body}