Created
February 28, 2013 05:57
-
-
Save benatwork/5054564 to your computer and use it in GitHub Desktop.
format twitter links from http://dustindiaz.com/linkified-tweets
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
/** | |
* The Twitalinkahashifyer! | |
* http://www.dustindiaz.com/basement/ify.html | |
* Eg: | |
* ify.clean('your tweet text'); | |
*/ | |
ify: { | |
link: function(tweet) { | |
return tweet.replace(/\b(((https*\:\/\/)|www\.)[^\"\']+?)(([!?,.\)]+)?(\s|$))/g, function(link, m1, m2, m3, m4) { | |
var http = m2.match(/w/) ? 'http://' : ''; | |
return '<a class="twtr-hyperlink" target="_blank" href="' + http + m1 + '">' + ((m1.length > 25) ? m1.substr(0, 24) + '...' : m1) + '</a>' + m4; | |
}); | |
}, | |
at: function(tweet) { | |
return tweet.replace(/\B[@@]([a-zA-Z0-9_]{1,20})/g, function(m, username) { | |
return '<a target="_blank" class="twtr-atreply" href="http://twitter.com/intent/user?screen_name=' + username + '">@' + username + '</a>'; | |
}); | |
}, | |
list: function(tweet) { | |
return tweet.replace(/\B[@@]([a-zA-Z0-9_]{1,20}\/\w+)/g, function(m, userlist) { | |
return '<a target="_blank" class="twtr-atreply" href="http://twitter.com/' + userlist + '">@' + userlist + '</a>'; | |
}); | |
}, | |
hash: function(tweet) { | |
return tweet.replace(/(^|\s+)#(\w+)/gi, function(m, before, hash) { | |
return before + '<a target="_blank" class="twtr-hashtag" href="http://twitter.com/search?q=%23' + hash + '">#' + hash + '</a>'; | |
}); | |
}, | |
clean: function(tweet) { | |
return this.hash(this.at(this.list(this.link(tweet)))); | |
} | |
} // ify |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment