Is there a way to have an xsl stylesheet recognize when a link appears inside a tag in an xml document and turn it into a working link?
Example:
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" href="guys.xsl"?>
<people>
<person>
<name>Guy 1</name>
<bio>Guy 1 is a guy.</bio>
</person>
<person>
<name>Guy 2</name>
<bio>Guy 2 is from <a href="http://www.example.com">somewhere</a>.</bio>
</person>
</people>
Guy 1's bio should just appear as regular text, Guy 2's bio should have a working link in it.