diff --git a/claat/parser/md/html.go b/claat/parser/md/html.go index 446e5486a..16a684cf0 100644 --- a/claat/parser/md/html.go +++ b/claat/parser/md/html.go @@ -221,6 +221,7 @@ func nodeAttr(n *html.Node, name string) string { func stringifyNode(root *html.Node, trim bool) string { if root.Type == html.TextNode { s := textCleaner.Replace(root.Data) + s = strings.Replace(s, "\n", " ", -1) if !trim { return s }