Initial freepository revision of XML support documents.
[project-aon.git] / xml / indent.xsl
1 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
2      <xsl:output indent="yes"/>
3      <xsl:template match="@* | node()">
4          <xsl:copy>
5              <xsl:apply-templates select="@* | node()"/>
6          </xsl:copy>
7      </xsl:template>
8      <xsl:template match="text()">
9          <xsl:value-of select="normalize-space()"/>
10      </xsl:template>
11 </xsl:stylesheet>