I'd like to create some sort of elisp function and bind it to a key that takes a URL, in one of two formats, and generate an HTML link element.
Here are the two input formats:
http://developer.apple.com/safaridemos/
http://developer.apple.com/safaridemos|Safari Demos
Here are the two desired output values:
<a href="http://developer.apple.com/safaridemos/">safaridemos</a>
<a href="http://developer.apple.com/safaridemos/">Safari Demos</a>
Ideally, this would work on a region, but even if it only worked on one line, it would be helpful.