view config/initializers/ext_twitter_tweet.rb @ 175:52252ae4b580

Static tag because it's supposed to be the same across rsstweet installs
author nanaya <me@nanaya.pro>
date Tue, 02 Oct 2018 23:58:36 +0900
parents d35dbc09bd83
children
line wrap: on
line source

class Twitter::Tweet
  def full_text_extended
    attrs[:full_text].printable
  end
  memoize :full_text_extended

  def unescaped_text
    CGI.unescapeHTML full_text_extended
  end
  memoize :unescaped_text
end