view docs/xsls/dump.xsls @ 5447:7e9543faf5f0 stable-1.4 release-1.4.4

nginx-1.4.4-RELEASE
author Maxim Dounin <mdounin@mdounin.ru>
date Tue, 19 Nov 2013 15:25:24 +0400
parents 2c863b4a8f93
children
line wrap: on
line source

X:stylesheet {

X:output method="xml"
X:param indent-increment="'   '";

X:template noname(indent="'&#xA;'") = "*" {
        !{$indent}

        X:if "name()='xsl:template'" {
                !{$indent}
        }

        X:copy {
           X:copy-of "@*"
           !!( indent = "concat($indent, $indent-increment)" );
           X:if "./* " { !{$indent}  }
        }
}

 
X:template = "comment()|processing-instruction()" {
    X:copy;
}

<!--
X:template ="text()[normalize-space(.)='']" {}
-->

}