emojicons 0.4.0

Parse :emoji: notation to unicode representation.
docs.rs failed to build emojicons-0.4.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: emojicons-1.0.1

Emojicons

Emojicons is a simple emoji parser written in Rust focused on ease of use and speed. It uses hashed map for fast lookup and compiled regular expressions for parsing strings.

Example usage

The library is extremely straightforward to use. For parsing strings, use the parse function:

emojicons::parse("Hello! :smile:".to_string());

This will return "Hello! :smile:"

There is also a macro for direct access to emoji:

emoji!(":cat:");

Will return a string with the glyph for :cat:.