diff options
author | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2004-05-20 21:48:55 +0000 |
---|---|---|
committer | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2004-05-20 21:48:55 +0000 |
commit | a34ad80e86383ab1483b677acf54abeda916666e (patch) | |
tree | e9f0279c05fcaf7a4bab890ac72ae088307f30b9 /stylesheets/lfs-chunked2.xsl | |
parent | 678e79c2588bfe5cd93425ffadd4147bee3c3bcf (diff) |
HEAD: Stylesheets - reestructured the order of imports and includes.
Added the nonchuk stylesheet from b5_1.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3681 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'stylesheets/lfs-chunked2.xsl')
-rw-r--r-- | stylesheets/lfs-chunked2.xsl | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/stylesheets/lfs-chunked2.xsl b/stylesheets/lfs-chunked2.xsl new file mode 100644 index 000000000..7f0252f01 --- /dev/null +++ b/stylesheets/lfs-chunked2.xsl @@ -0,0 +1,27 @@ +<?xml version='1.0' encoding='ISO-8859-1'?> + +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns="http://www.w3.org/1999/xhtml" + version="1.0"> + + <!-- We use XHTML --> + <xsl:import href="http://docbook.sourceforge.net/release/xsl/1.65.1/xhtml/docbook.xsl"/> + <xsl:param name="chunker.output.encoding" select="'ISO-8859-1'"/> + + <!-- Including our others customized elements templates --> + <xsl:include href="xhtml/lfs-admon.xsl"/> + <xsl:include href="xhtml/lfs-mixed.xsl"/> + <xsl:include href="xhtml/lfs-titles.xsl"/> + <xsl:include href="xhtml/lfs-toc.xsl"/> + + <!-- The CSS Stylesheet --> + <xsl:param name="html.stylesheet" select="'../stylesheets/lfs.css'"/> + + <!-- Dropping some unwanted style attributes --> + <xsl:param name="ulink.target" select="''"></xsl:param> + <xsl:param name="css.decoration" select="0"></xsl:param> + + <!-- No XML declaration --> + <xsl:param name="chunker.output.omit-xml-declaration" select="'yes'"/> + +</xsl:stylesheet> |