mirror of
https://github.com/avelino/awesome-go.git
synced 2024-11-07 16:33:40 +00:00
sanitize markdown
This commit is contained in:
parent
bc3434bb6a
commit
7cee227b4a
17
repo.go
17
repo.go
@ -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}
|
||||
|
Loading…
Reference in New Issue
Block a user