diff --git a/serve/template.go b/serve/template.go
index 1267979..b548611 100644
--- a/serve/template.go
+++ b/serve/template.go
@@ -87,7 +87,7 @@ func ParseEmojis(s string) template.HTML {
s = s[1 : len(s)-1] // Get the string inside
id := emojiList[s]
- return fmt.Sprintf(`
`, id, s)
+ return fmt.Sprintf(`
`, id, s)
})
return template.HTML(parsedString)
}