diff --git a/bridge/helper/helper.go b/bridge/helper/helper.go index c336fd13..dceb4848 100644 --- a/bridge/helper/helper.go +++ b/bridge/helper/helper.go @@ -178,7 +178,10 @@ func ClipMessage(text string, length int) string { func ParseMarkdown(input string) string { md := markdown.New(markdown.XHTMLOutput(true), markdown.Breaks(true)) - return (md.RenderToString([]byte(input))) + res := md.RenderToString([]byte(input)) + res = strings.TrimPrefix(res, "
") + res = strings.TrimSuffix(res, "
\n") + return res } // ConvertWebPToPNG convert input data (which should be WebP format to PNG format)