Skip to content

Instantly share code, notes, and snippets.

@crswll
Created May 29, 2013 20:41
Show Gist options
  • Save crswll/5673671 to your computer and use it in GitHub Desktop.
Save crswll/5673671 to your computer and use it in GitHub Desktop.
A person in IRC wanted some help with getting some #hashtags "highlighted" in a div.
$('.bio').html(function(i,html){
return html.split(' ').map(function(word){
if( word.substr(0,1) === '#' ){
return '<strong>' + word + '</strong>';
} else {
return word;
}
}).join(' ');
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment