i3-blocks-go/rendering/emoji.go

10 lines
141 B
Go
Raw Normal View History

2022-08-28 14:59:15 +02:00
package rendering
import (
"fmt"
)
func FontAwesome(str string) string {
return fmt.Sprintf(`<span font="FontAwesome">%s</span>`, str)
2022-08-28 14:59:15 +02:00
}