i3-blocks-go/rendering/emoji.go
Simon Vieille 433cfda295
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
remove Emoji func; add FontAwesome func
2022-08-29 11:57:15 +02:00

10 lines
141 B
Go

package rendering
import (
"fmt"
)
func FontAwesome(str string) string {
return fmt.Sprintf(`<span font="FontAwesome">%s</span>`, str)
}