Project

General

Profile

1 15427 dimitra.ke
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
2
<xsl:output method="xml" indent="yes" encoding="UTF-8"/>
3
<xsl:template match="/">
4
	<xsl:apply-templates/>
5
</xsl:template>
6
7
<xsl:template match="@*|node()">
8
	<xsl:copy>
9
		<xsl:apply-templates select="@*|node()"/>
10
	</xsl:copy>
11
</xsl:template>
12
13
</xsl:stylesheet>