Re: [xsl] weird formatting and characters with <xsl:text disable-output-escaping>

Subject: Re: [xsl] weird formatting and characters with <xsl:text disable-output-escaping>
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 26 Apr 2005 21:24:56 +0100
		<xsl:result-document href="{$filename}" format="text">

		<xsl:text disable-output-escaping="yes">
		&lt;ASCII-WIN&gt;
		&lt;Version:3.000000&gt;


why would you want to do that rather than

		<xsl:result-document href="{$filename}" format="text">
		<ASCII-WIN>
		<Version:3.000000>

Oh that's why. This element name does not conform to the XML Namespace
Rec, so in practice it won't work with most modern XML tools (and won't
work as either input pr output to XSLT or XPath.

Do you have to have that element name?

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Current Thread