diff options
Diffstat (limited to 'bridge')
-rw-r--r-- | bridge/helper/helper.go | 5 |
1 files changed, 4 insertions, 1 deletions
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, "<p>") + res = strings.TrimSuffix(res, "</p>\n") + return res } // ConvertWebPToPNG convert input data (which should be WebP format to PNG format) |