From 15a054a567315a99a5eaac673e05353493164277 Mon Sep 17 00:00:00 2001 From: Sergey Davydov Date: Mon, 4 Sep 2023 18:07:18 +0300 Subject: [PATCH] no dot after strong --- html2text.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html2text.go b/html2text.go index 8fe9000..c389222 100644 --- a/html2text.go +++ b/html2text.go @@ -241,7 +241,7 @@ func (ctx *textifyTraverseContext) handleElement(node *html.Node) error { } str := subCtx.buf.String() if ctx.options.TextOnly { - return ctx.emit(str + ".") + return ctx.emit(str) } return ctx.emit("*" + str + "*")