package target import "strings" func processHTML(html string) string { html = strings.ReplaceAll(html, "\n", " ") html = strings.ReplaceAll(html, "
", "\n") html = strings.ReplaceAll(html, "
", "\n") html = strings.ReplaceAll(html, "
", "\n") html = strings.ReplaceAll(html, "

", "") html = strings.ReplaceAll(html, "

", "\n") return html }