63913d643d114eff090519db07f674b65c96799a
[util-vserver.git] / util-vserver / doc / beautify.xsl
1 <?xml version="1.0" encoding="utf-8"?>
2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3                 version="1.0">
4
5   <xsl:output method="xml" indent="yes"
6               doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
7               doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
8
9   <xsl:template match="@*|node()">
10     <xsl:copy>
11       <xsl:apply-templates select="@*|node()"/>
12     </xsl:copy>
13   </xsl:template>
14
15 </xsl:stylesheet>