Documentation of an exported function should start with the function’s name GO-D5001
Documentation
Minor
1 occurrence in this check
comment on exported function SlackTextFormatter should be of the form "SlackTextFormatter ..."
 49	return data, nil
 50}
 51
 52// see: https://api.slack.com/docs/formatting 53func SlackTextFormatter(s string) string {
 54	// replace & < >
 55	s = strings.ReplaceAll(s, "&", "&amp;")