Detect any URLs in a plain-text and convert em into links, but if its already a link, do nothing.
var text = 'text with link <a href="/">www.google.com</a>, another link www.google.com';
the result should be:
var text = 'text with link <a href="/">www.google.com</a>, another link <a href="www.google.com">www.google.com</a>';