Browse Source

Fix textblock about incorrect symbols (html)

master
parent
commit
2e0f72a68e
  1. 2
      send.go

2
send.go

@ -90,7 +90,7 @@ func NormalizeHTMLforTelegram(s string) (out string) { @@ -90,7 +90,7 @@ func NormalizeHTMLforTelegram(s string) (out string) {
}
TxtContent := strings.TrimSpace(html.UnescapeString(string(domDocTest.Text())))
if len(TxtContent) > 0 {
out += TxtContent
out += html.EscapeString(TxtContent)
}
}
}

Loading…
Cancel
Save