Skip to content

Instantly share code, notes, and snippets.

@rukeba
Created August 20, 2010 08:18
Show Gist options
  • Save rukeba/539877 to your computer and use it in GitHub Desktop.
Save rukeba/539877 to your computer and use it in GitHub Desktop.
function linkify(text){
return text.replace(/(https?:\/\/[\w\-:;?&=+.%#\/]+)/gi, '<a href="$1">$1</a>')
.replace(/(^|\W)@(\w+)/g, '$1<a href="http://twitter.com/$2">@$2</a>')
.replace(/(^|\W)#(\w+)/g, '$1<a href="http://search.twitter.com/search?q=%23$2">#$2</a>');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment