Here is my problem:
I need to paste tons and tons of URLs into html files, and make them links as well.
In other words, I have addresses like this:
http://url1
http://url2
http://url3
and so on...
I need to make them look like this:
<a href="http://url1">http://url1</a><br>
<a href="http://url2">http://url2</a><br>
<a href="http://url3">http://url3</a><br>
Can you think of a solution? I currently use a combination of excel and notepad, but I feel there must be a better way.