Method: AutoHtml::Emoji#call

Defined in:
lib/auto_html/emoji.rb

#call(text) ⇒ Object



8
9
10
11
12
13
# File 'lib/auto_html/emoji.rb', line 8

def call(text)
  text.gsub(self.class.emoji_pattern) do
    name = Regexp.last_match(1)
    ::Emoji.find_by_alias(name).raw
  end
end