summaryrefslogtreecommitdiff
path: root/util/html.go
diff options
context:
space:
mode:
Diffstat (limited to 'util/html.go')
-rw-r--r--util/html.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/util/html.go b/util/html.go
deleted file mode 100644
index af2ce60..0000000
--- a/util/html.go
+++ /dev/null
@@ -1,14 +0,0 @@
-package util
-
-import (
- "html/template"
- "strings"
-)
-
-func HTMLCellEscapeString(s string) template.HTML {
- html := template.HTMLEscapeString(s)
- if strings.TrimSpace(html) == "" {
- html = " "
- }
- return template.HTML(html)
-}