I have a prebuilt system so I can't change the back end.
When I call <xsl:value-of select="udt:Application" disable-output-escaping="yes" />
I get html like
<a href="someplace/somefile.pdf">somefile.pdf</a>
What I want to be able to do is make the link just say application, no matter what the file name is. This is the html I would like
<a href="someplace/somefile.pdf">Application</a>
I really have no idea about how to do this because I'm somewhat a noob with xsl. Examples are welcome, but if someone can just give me the names of things I would need to use I can probably google them and get it. Thanks in advance!