Skip to content

Instantly share code, notes, and snippets.

@simplesessions
Last active December 18, 2015 15:59
Show Gist options
  • Save simplesessions/5808662 to your computer and use it in GitHub Desktop.
Save simplesessions/5808662 to your computer and use it in GitHub Desktop.
# assuming that you got the tweet back and assgined it to "tweet"
output = tweet[:text].tap do |t|
tweet[:entities][:hashtags].reverse.each do |h|
t[h[:indices][0], h[:indices][1] - h[:indices][0]] = "<a href=\"\#\">\##{h[:text]}</a>"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment