Popularity
1.9
Stable
Activity
0.0
Stable
5
2
4

Monthly Downloads: 2
Programming language: Elixir
License: Do What The F*ck You Want To Public License
Tags: Text And Numbers    

smile alternatives and similar packages

Based on the "Text and Numbers" category.
Alternatively, view smile alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of smile or a related project?

Add another 'Text and Numbers' Package

README

Smile

Small lib for converting emoji mappers to emoji characters, like in Slack messages:

import Smile
convert_text("my emoji game is :ok_hand_sign:")
# > "my emoji game is 👌"

This is just an experiment to examine metaprogramming in Elixir, there's known limitations:

  1. Emojis in the middle of other don't work, ex.: ":woo:pile_of_poo:hoo:" would not convert the :pile_of_poo: in the middle

Ideas, suggestions, contributions welcome, just drop me a line at [[email protected]]([email protected])

Installation

Available in Hex, the package can be installed as:

  1. Add smile to your list of dependencies in mix.exs:

    def deps do
      [{:smile, "~> 0.1.0"}]
    end
    
  2. Ensure smile is started before your application:

    def application do
      [applications: [:smile]]
    end