summaryrefslogtreecommitdiffstats
path: root/dom/xml/resources/XMLPrettyPrint.xsl
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--dom/xml/resources/XMLPrettyPrint.xsl11
1 files changed, 9 insertions, 2 deletions
diff --git a/dom/xml/resources/XMLPrettyPrint.xsl b/dom/xml/resources/XMLPrettyPrint.xsl
index b23296cf0d..7b9397cde7 100644
--- a/dom/xml/resources/XMLPrettyPrint.xsl
+++ b/dom/xml/resources/XMLPrettyPrint.xsl
@@ -33,7 +33,7 @@
</xsl:template>
<xsl:template match="*[node()]">
- <div>
+ <div><xsl:apply-templates mode="space" select="@xml:space"/>
<xsl:text>&lt;</xsl:text>
<span class="start-tag"><xsl:value-of select="name(.)"/></span>
<xsl:apply-templates select="@*"/>
@@ -48,7 +48,7 @@
</xsl:template>
<xsl:template match="*[* or processing-instruction() or comment() or string-length(.) &gt; 50]">
- <div>
+ <div><xsl:apply-templates mode="space" select="@xml:space"/>
<details open="" class="expandable-body">
<summary class="expandable-opening">
<xsl:text>&lt;</xsl:text>
@@ -68,6 +68,13 @@
</div>
</xsl:template>
+ <xsl:template match="@xml:space[string() = 'default']" mode="space">
+ <xsl:attribute name="class">space-default</xsl:attribute>
+ </xsl:template>
+ <xsl:template match="@xml:space[string() = 'preserve']" mode="space">
+ <xsl:attribute name="class">space-preserve</xsl:attribute>
+ </xsl:template>
+
<xsl:template match="@*">
<xsl:text> </xsl:text>
<span class="attribute-name"><xsl:value-of select="name(.)"/></span>