Golang Emoji parser, converter to html and images
parser := NewEmojiParser()
var text = "a #💩 #and #🍦 #😳"
var i = -1
replased := parser.ReplaceAllStringFunc(text, func(s string) string {
i++
return strconv.Itoa(i)
})
// replased == "a #0 #and #1 #2"
parser := NewEmojiParser()
text := "a #💩 #and #🍦 #😳"
replased := parser.ToHtmlEntities(text)
// replased == "a #💩 #and #🍦 #😳"
parser := NewEmojiParser()
text := "a #💩 #and #🍦 #😳"
replased := parser.ToHtmlImages(text)
result:
a #<img
class="emoji"
draggable="false"
alt="💩"
src="https://twemoji.maxcdn.com/36x36/1f4a9.png"> #and #<img
class="emoji"
draggable="false"
alt="🍦"
src="https://twemoji.maxcdn.com/36x36/1f366.png"> #<img
class="emoji"
draggable="false"
alt="😳"
src="https://twemoji.maxcdn.com/36x36/1f633.png">
- Instagram developers blog
- Twemoji SVG https://github.com/twitter/twemoji
- Unicode Emojii data emoji-data.txt
- Unicode Tech Report 51 tech report
- Contributors of the same library for the PHP https://github.com/urakozz/php-emoji-regex/pulls?q=is%3Apr+is%3Aclosed