diff --git a/app/rest/server.go b/app/rest/server.go index aadef818..bf300864 100644 --- a/app/rest/server.go +++ b/app/rest/server.go @@ -186,7 +186,7 @@ func (s *Server) updateCommentCtrl(w http.ResponseWriter, r *http.Request) { id := chi.URLParam(r, "id") // render markdown - edit.Text = string(blackfriday.Run([]byte(edit.Text))) + edit.Text = string(blackfriday.Run([]byte(edit.Text), blackfriday.WithNoExtensions())) log.Printf("[DEBUG] update comment %s, %+v", id, edit)