<?xml version="1.0"?>
<!--
    Convert to UTF-8, pretty-print slightly
	$Id: hansutf8.xsl,v 1.1.2.6 2004/09/02 14:25:42 thomas Exp $
-->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                              xmlns:hans="http://www.hans-support.de/specs/hansxml/0.6/"
                              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>
