aboutsummaryrefslogtreecommitdiffstats
path: root/src/documentation/resources
diff options
context:
space:
mode:
authorWilliam Victor Mote <vmote@apache.org>2003-07-24 17:53:04 +0000
committerWilliam Victor Mote <vmote@apache.org>2003-07-24 17:53:04 +0000
commit34fe248222b33d0f978de12ce2a8465d82b4b1ae (patch)
treed13ee2034a17f48e9ee0019f1ab4e5740cee0178 /src/documentation/resources
parent086ee104b13d4984b25631fa1e13d8e96ebd7005 (diff)
downloadxmlgraphics-fop-34fe248222b33d0f978de12ce2a8465d82b4b1ae.tar.gz
xmlgraphics-fop-34fe248222b33d0f978de12ce2a8465d82b4b1ae.zip
Forrest/Cocoon appears to be intercepting the HTML &nbsp; at an XML level, so instead, we'll try putting the character entity in. We can infer from some other documents that they must be converting such characters to HTML entities.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196743 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/documentation/resources')
-rw-r--r--src/documentation/resources/stylesheets/compliance2html.xsl10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/documentation/resources/stylesheets/compliance2html.xsl b/src/documentation/resources/stylesheets/compliance2html.xsl
index 3f6ace570..b713942c7 100644
--- a/src/documentation/resources/stylesheets/compliance2html.xsl
+++ b/src/documentation/resources/stylesheets/compliance2html.xsl
@@ -268,7 +268,7 @@
</a>
</xsl:when>
<xsl:otherwise>
- <xsl:value-of select="string('&nbsp;')"/>
+ <xsl:text>&#x00A0;</xsl:text>
</xsl:otherwise>
</xsl:choose>
</td>
@@ -308,7 +308,7 @@
<xsl:value-of select="@comply"/>
</xsl:when>
<xsl:otherwise>
- <xsl:value-of select="string('&nbsp;')"/>
+ <xsl:text>&#x00A0;</xsl:text>
</xsl:otherwise>
</xsl:choose>
</td>
@@ -348,7 +348,7 @@
<xsl:value-of select="@comply"/>
</xsl:when>
<xsl:otherwise>
- <xsl:value-of select="string('&nbsp;')"/>
+ <xsl:text>&#x00A0;</xsl:text>
</xsl:otherwise>
</xsl:choose>
</td>
@@ -388,7 +388,7 @@
<xsl:value-of select="@comply"/>
</xsl:when>
<xsl:otherwise>
- <xsl:value-of select="string('&nbsp;')"/>
+ <xsl:text>&#x00A0;</xsl:text>
</xsl:otherwise>
</xsl:choose>
</td>
@@ -406,7 +406,7 @@
</xsl:when>
<xsl:otherwise>
<td align="center">
- <xsl:value-of select="string('&nbsp;')"/>
+ <xsl:text>&#x00A0;</xsl:text>
</td>
</xsl:otherwise>
</xsl:choose>