diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2004-05-24 19:36:38 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2004-05-24 19:36:38 +0000 |
commit | 8115bad47813cdd229cfbaafb4aef8bb57222887 (patch) | |
tree | 3aa85a9060f4cfcbef7ebf9ff1cc4a052b0f3727 | |
parent | 1475ee8f7992f1cce8f50152129ad4e493b31a74 (diff) |
Fixed nochunks output encoding
git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/b5_1/BOOK@3707 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | stylesheets/lfs-nochunks.xsl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/stylesheets/lfs-nochunks.xsl b/stylesheets/lfs-nochunks.xsl index 41038a992..6006d26c7 100644 --- a/stylesheets/lfs-nochunks.xsl +++ b/stylesheets/lfs-nochunks.xsl @@ -9,6 +9,9 @@ Based on the original lfs-chunked.xsl created by Matthew Burgess --> <!-- We use XHTML --> <xsl:import href="http://docbook.sourceforge.net/release/xsl/1.65.1/xhtml/docbook.xsl"/> + + <!-- Fix encoding issues with default UTF-8 output of the xhtml stylesheet --> + <xsl:output method="html" encoding="ISO-8859-1" indent="no" /> <!-- Including our others customized templates --> <xsl:include href="xhtml/lfs-admon.xsl"/> |