<?xml version="1.0" encoding="utf-8"?>

<!--
*
*  Simple copy stylesheet, typically used because it does nice indenting of its output.
*
*-->

<xsl:stylesheet
	version="2.0"
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	
	<xsl:output method="xml" encoding="utf-8" indent="yes"/>
	
	<xsl:template match="/">
		<xsl:copy-of select="."/>
	</xsl:template>
	
</xsl:stylesheet>
