Last active
December 18, 2015 15:59
-
-
Save simplesessions/5808662 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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