Emoji Printer

Intro

Utility to convert strings with emoji shortcodes (:sushi:) to strings with the emoji unicode (🍣)

Install

cargo add emoji-printer

How to use

```rs use emojiprinter::printemojis;

fn main() { let greeting = printemojis(":wavinghand: Hello, :globeshowingAmericas: World"); println!("{}", greeting); // 👋 Hello, 🌎 World } ```