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)) } func loader() string { return `
` } func inputMessageDisabled(disabled bool) string { if disabled { return `` } return `` }