diff options
author | William Victor Mote <vmote@apache.org> | 2003-07-24 16:51:17 +0000 |
---|---|---|
committer | William Victor Mote <vmote@apache.org> | 2003-07-24 16:51:17 +0000 |
commit | 086ee104b13d4984b25631fa1e13d8e96ebd7005 (patch) | |
tree | 79bd452ccaf58742bea7fa5c51ec1e1bbffc7059 /src/documentation/resources | |
parent | 15f2136c167d75fec59eaf69748b7993b5afd379 (diff) | |
download | xmlgraphics-fop-086ee104b13d4984b25631fa1e13d8e96ebd7005.tar.gz xmlgraphics-fop-086ee104b13d4984b25631fa1e13d8e96ebd7005.zip |
another attempt to pass the HTML entity through
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@196742 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/documentation/resources')
-rw-r--r-- | src/documentation/resources/stylesheets/compliance2html.xsl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/documentation/resources/stylesheets/compliance2html.xsl b/src/documentation/resources/stylesheets/compliance2html.xsl index 5fc6ae0be..3f6ace570 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:text>&nbsp;</xsl:text> + <xsl:value-of select="string(' ')"/> </xsl:otherwise> </xsl:choose> </td> @@ -308,7 +308,7 @@ <xsl:value-of select="@comply"/> </xsl:when> <xsl:otherwise> - <xsl:text>&nbsp;</xsl:text> + <xsl:value-of select="string(' ')"/> </xsl:otherwise> </xsl:choose> </td> @@ -348,7 +348,7 @@ <xsl:value-of select="@comply"/> </xsl:when> <xsl:otherwise> - <xsl:text>&nbsp;</xsl:text> + <xsl:value-of select="string(' ')"/> </xsl:otherwise> </xsl:choose> </td> @@ -388,7 +388,7 @@ <xsl:value-of select="@comply"/> </xsl:when> <xsl:otherwise> - <xsl:text>&nbsp;</xsl:text> + <xsl:value-of select="string(' ')"/> </xsl:otherwise> </xsl:choose> </td> @@ -406,7 +406,7 @@ </xsl:when> <xsl:otherwise> <td align="center"> - <xsl:text>&nbsp;</xsl:text> + <xsl:value-of select="string(' ')"/> </td> </xsl:otherwise> </xsl:choose> |