This commit is contained in:
2026-03-07 07:50:24 +07:00
parent 795edad998
commit 83868cc778
7 changed files with 222 additions and 7 deletions
+1 -1
View File
@@ -45,5 +45,5 @@ func (s *service) ClearCode(code string) string {
}
func (s *service) ClearText(text string) string {
return re.ReplaceAllString(text, "")
return strings.TrimSpace(re.ReplaceAllString(text, ""))
}