diff options
Diffstat (limited to 'modules/base/tool.go')
-rw-r--r-- | modules/base/tool.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/modules/base/tool.go b/modules/base/tool.go index 4b84ac0b..4802c413 100644 --- a/modules/base/tool.go +++ b/modules/base/tool.go @@ -8,7 +8,6 @@ import ( "crypto/md5" "encoding/hex" "fmt" - "html/template" "strings" "time" ) @@ -30,10 +29,6 @@ const ( Year = 12 * Month ) -func Str2html(raw string) template.HTML { - return template.HTML(raw) -} - // TimeSince calculates the time interval and generate user-friendly string. func TimeSince(then time.Time) string { now := time.Now() |