summaryrefslogtreecommitdiffstats
path: root/src/main/resources/libvirt/xsl/xml-output-transformation.xsl
blob: febed549f6e961335df947967aa65e94e41627dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<xsl:stylesheet version="1.0"
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
	xmlns:xalan="http://xml.apache.org/xalan">
	<xsl:output method="xml" omit-xml-declaration="yes"
		encoding="UTF-8" indent="yes" xalan:indent-amount="2" />
	<xsl:strip-space elements="*" />
	<xsl:template match="@*|node()">
		<xsl:copy>
			<xsl:apply-templates select="@*|node()" />
		</xsl:copy>
	</xsl:template>
</xsl:stylesheet>