e4ba17fa693d07614b853b6e384b62f2ee04ed05
[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                 xmlns="http://www.w3.org/1999/xhtml"
4                 version="1.0">
5
6   <xsl:output method="xml" indent="yes"
7               doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
8               doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
9
10   <xsl:template match="@*|node()">
11     <xsl:copy>
12       <xsl:apply-templates select="@*|node()"/>
13     </xsl:copy>
14   </xsl:template>
15
16 </xsl:stylesheet>