Re: [xsl] Transforming XML copied via XSLT

Subject: Re: [xsl] Transforming XML copied via XSLT
From: Rob Belics <rob_belics@xxxxxxxxxxx>
Date: Wed, 27 Jan 2010 15:59:26 -0600
No, perhaps this will better explain:

The input xml file might be:
<sandwich>
	<name>tuna</name>
	<link>mysite.com</link>
	<price>$5.00</price>
</sandwich>

I'm able to 'xsl:copy-of' into my file but I'm not sure the best way to
obtain these results:
<a href="http://mysite.com/";>tuna</a>
<p>$5.00</p>

Current Thread