<?xml version="1.0"?>
<!--
    Convert to UTF-8, pretty-print slightly
	$Id: hansutf8.xsl 23094 2010-02-24 22:14:56Z ThB $
-->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                              xmlns:hans="http://www.hans-support.de/specs/hansxml/0.7/"
                              exclude-result-prefixes="hans">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" />
<xsl:preserve-space elements="hans:hansfield hans:subfield hans:hanscode" />
<xsl:strip-space elements="*" />

<!-- copy everything -->
<xsl:template match="/ | * | @* | comment() | processing-instruction() | text()"> 
	<xsl:copy> 
		<xsl:apply-templates select="@* | * | comment() | processing-instruction() | text()"/> 
	</xsl:copy> 
</xsl:template> 

</xsl:stylesheet>

