Skip to content

Instantly share code, notes, and snippets.

@alexalannunes
Created April 10, 2019 00:57
Show Gist options
  • Save alexalannunes/e240026be8da971fde83f814619a3fe3 to your computer and use it in GitHub Desktop.
Save alexalannunes/e240026be8da971fde83f814619a3fe3 to your computer and use it in GitHub Desktop.
function boldText(text){
var bold = /\*\*(\S(.*?\S)?)\*\*/gm;
var html = text.replace(bold, '<b>$1</b>');
return html;
}
var result = boldText('te**st**ing');
alert(result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment