package component import ( "strings" ) templ Content(str string) { trimSpace(str) } func trimSpace(str string) string { return strings.TrimSpace(str) }