Skip to content

Latest commit

 

History

History
56 lines (38 loc) · 1.29 KB

README.md

File metadata and controls

56 lines (38 loc) · 1.29 KB

emoji

Build Status GoDoc

A golang library for emoji chars converting.

INSTALL

$ go get -u github.com/chnlr/emoji

EXAMPLE CODE

package main

import (
    "fmt"

    "github.com/chnlr/emoji"
)

func main() {
    fmt.Println(emoji.EmojiTagToUnicode(`:+1:`)) // => 👍
}

DOCUMENTATION

Author

Naoki OKAMURA a.k.a nyarla [email protected]

LICENSE

MIT

USGIN LIBRARIES

  1. map.go in this package is base by https://github.com/melborne/emot/blob/master/lib/emot/map.rb (ruby's emot)
    • ruby's emot is under the MIT
    • Copyright (c) 2014 kyoendo.
  2. this library is using to twemoji's SVG link with MaxCDN for generates emoji image link.