How can I transform all text links in a page into actual links?
For example, I want to change all text links like this:
<p>http://www.google.com</p>
or in a table like this:
<td>http://www.google.com</td>
into this:
<a href="http://www.google.com">http://www.google.com</a>
and this:
<td><a href="http://www.google.com">http://www.google.com</a></td>