Subject: Re: xsl:copy producing ugly output with MSXML3SP2
From: "James Fuller" <james.fuller@xxxxxxxxxx>
Date: Fri, 21 Jun 2002 11:25:17 +0100
|
you might have better luck
also including HTML tidy as part of your process
at www.w3.org/tidy
or more recently
http://tidy.sourceforge.net/
cheers, jim fuller
----- Original Message -----
From: "Richard Mitchell" <Richard.Mitchell@xxxxxxxxxxxxx>
To: "XSL" <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>
Sent: Friday, June 21, 2002 10:59 AM
Subject: xsl:copy producing ugly output with MSXML3SP2
> Well here I am trying to do a little bit of post processing
> on my nice xml file to put in a few missing attributes but
> mostly copying the file along without changing it.
>
> However I have the following general template
>
> <xsl:template match="@*|node()">
> <xsl:copy><xsl:apply-templates select="@*|node()"/></xsl:copy>
> </xsl:template>
>
> Which can take an input in the style of
> <param name="_xsl_keyfile" value="/_key.xml" />
> and turn it into
> <param name="_xsl_keyfile" value="/_key.xml"></param>
>
> Ugly isn't it. Anybody have any ideas as to what I can do?
>
> Richard Mitchell
> Software Development Manager
> http://www.vbnonline.com/
>
>
>
> XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|