go-emoji

Golang Emoji parser, converter to html and images

  • Owner: urakozz/go-emoji
  • Platform:
  • License:: MIT License
  • Category::
  • Topic:
  • Like:
    0
      Compare:

Github stars Tracking Chart

go-emoji

Build Status

Golang Emoji parser, converter to html and images

Usage

Parse

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"

Convert

To HTML-Entities

parser := NewEmojiParser()
text := "a #? #and #? #?"
replased := parser.ToHtmlEntities(text)
// replased == "a #💩 #and #🍦 #😳"

To HTML-Images

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">

References

  1. Instagram developers blog
  2. Twemoji SVG https://github.com/twitter/twemoji
  3. Unicode Emojii data emoji-data.txt
  4. Unicode Tech Report 51 tech report
  5. Contributors of the same library for the PHP https://github.com/urakozz/php-emoji-regex/pulls?q=is%3Apr+is%3Aclosed

Main metrics

Overview
Name With Ownerurakozz/go-emoji
Primary LanguageGo
Program languageGo (Language Count: 1)
Platform
License:MIT License
所有者活动
Created At2015-10-20 14:32:39
Pushed At2020-01-27 10:31:11
Last Commit At2020-01-27 11:31:10
Release Count0
用户参与
Stargazers Count43
Watchers Count3
Fork Count14
Commits Count12
Has Issues Enabled
Issues Count2
Issue Open Count2
Pull Requests Count0
Pull Requests Open Count0
Pull Requests Close Count0
项目设置
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private