refactor: remove unused code

This commit is contained in:
yusing 2025-04-04 00:47:36 +08:00
parent fdac2853af
commit 477ddb6241

View file

@ -23,11 +23,3 @@ const (
func StripANSI(s string) string { func StripANSI(s string) string {
return ansiRegexp.ReplaceAllString(s, "") return ansiRegexp.ReplaceAllString(s, "")
} }
var ToHTMLClass = map[string]string{
"[91": "log-red",
"[92": "log-green",
"[93": "log-yellow",
"[96": "log-cyan",
"[97": "log-white",
}