diff options
Diffstat (limited to 'stylesheets/lfs-xsl/xhtml/lfs-mixed.xsl')
-rw-r--r-- | stylesheets/lfs-xsl/xhtml/lfs-mixed.xsl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/stylesheets/lfs-xsl/xhtml/lfs-mixed.xsl b/stylesheets/lfs-xsl/xhtml/lfs-mixed.xsl index da57f7395..f6780385a 100644 --- a/stylesheets/lfs-xsl/xhtml/lfs-mixed.xsl +++ b/stylesheets/lfs-xsl/xhtml/lfs-mixed.xsl @@ -1,4 +1,4 @@ -<?xml version='1.0' encoding='ISO-8859-1'?> +<?xml version='1.0' encoding='UTF-8'?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml" @@ -294,7 +294,9 @@ </td> </xsl:when> <xsl:when test="$numcols > 3"> - <td> </td> + <!-- The space between <td> and </td> is a non breakable + space (unicode A0) encoded in utf-8.--> + <td> </td> </xsl:when> <xsl:otherwise/> </xsl:choose> |