
September 4th, 2001, 06:41 AM
|
|
Junior Member
|
|
Join Date: Apr 2001
Posts: 3
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
I've solved it myself, it was only a matter of finding the right function... =)
Quote:
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml"/>
<xsl:template match="*">
<xsl:copy>
<xsl:apply-templates select="@*"/>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
<xsl:template match="@*">
<xsl:element name="{local-name()}">
<xsl:value-of select="."/>
</xsl:element>
</xsl:template>
</xsl:stylesheet> |
|