This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: xml in, xml out


> wanted:
> an xsl stylesheet that mimics/recreates the xml it receives as input.\

<xsl:template match="*">
	<xsl:copy>
		<xsl:apply-templates/>
	</xsl:copy>
</xsl:template>

since you don't seem to want to persist the attributes through the
transform.

<xsl:template match="*">
	<xsl:copy>
	<xsl:for-each select="@*">
		<xsl:attribute name="{name()}"><xsl:value-of
select="."/></xsl:attribute>
	</xsl:for-each>
		<xsl:apply-templates/>
	</xsl:copy>
</xsl:template>

if you do want to carry through the attributes.

Ben


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]