We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
It would be handy to have a method on a Style that can apply a function to a string:
Style
s := NewStyle().Transform(strings.ToUpper); fmt.Println(s.Render("raow")) // RAOW
With the the argument there being a func(string) string.
func(string) string