From dbfc59633310275c8e99182b3e007ffb59e74023 Mon Sep 17 00:00:00 2001 From: mudler Date: Sun, 7 Apr 2024 20:30:20 +0200 Subject: [PATCH] comment --- example/webui/elements.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/example/webui/elements.go b/example/webui/elements.go index a3a1bd2..0a82bba 100644 --- a/example/webui/elements.go +++ b/example/webui/elements.go @@ -2,6 +2,8 @@ package main import "fmt" +// TODO: switch to https://github.com/chasefleming/elem-go + func chatDiv(content string, color string) string { return fmt.Sprintf(`
%s
`, color, htmlIfy(content)) }