Files
LocalAGI/example/webui/elements.go
2024-04-05 17:14:53 +02:00

8 lines
179 B
Go

package main
import "fmt"
func chatDiv(content string, color string) string {
return fmt.Sprintf(`<div class="p-2 my-2 rounded bg-%s-100">%s</div>`, color, htmlIfy(content))
}