diff options
Diffstat (limited to 'routes/routes.go')
-rw-r--r-- | routes/routes.go | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/routes/routes.go b/routes/routes.go index 1034f2f..3124d1b 100644 --- a/routes/routes.go +++ b/routes/routes.go @@ -110,8 +110,11 @@ func (d *deps) RepoIndex(w http.ResponseWriter, r *http.Request) { content, _ := gr.FileContent(readme) if len(content) > 0 { switch ext { - case ".md": - unsafe := blackfriday.Run([]byte(content), blackfriday.WithExtensions(blackfriday.CommonExtensions)) + case ".md", ".mkd", ".markdown": + unsafe := blackfriday.Run( + []byte(content), + blackfriday.WithExtensions(blackfriday.CommonExtensions), + ) html := bluemonday.UGCPolicy().SanitizeBytes(unsafe) readmeContent = template.HTML(html) default: |