blob: 1fbc9e70c4203c6c3bdc61cc82383368c2f90d49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<!-- Import our base stylesheet -->
<xsl:import
href="file:///usr/share/sgml/docbook/stylesheet/xsl/nwalsh/html/chunk.xsl"/>
<!-- Include our common parameters -->
<xsl:include href="style-common.xsl"/>
<!-- Any html-specific parameters follow -->
<!-- You may find some in /etc/sgml/docbook-xsl/html/param.xsl -->
<!-- Where to put resulting html. Don't forget trailing slash! -->
<xsl:param name="base.dir" select="'./'"/>
<!-- I hate when the first subsection is on the same page as content -->
<xsl:param name="chunk.first.sections" select="1"/>
<!-- We can control, how deep should pages be -->
<xsl:param name="chunk.section.depth" select="1"/>
<!-- Put correct encoding into the header -->
<xsl:param name="chunker.output.encoding" select="'UTF-8'"/>
<!-- We want some code aesthetic in resulting html -->
<xsl:param name="chunker.output.indent" select="'yes'"/>
<!-- We want fancy icons around note, warning, etc. -->
<xsl:param name="admon.graphics">1</xsl:param>
<!-- We want fancy icons instead of Next, Prev, Up, Home -->
<xsl:param name="navig.graphics">1</xsl:param>
<xsl:param name="navig.graphics.extension">.png</xsl:param>
<!-- We don't want default inline css -->
<xsl:param name="css.decoration">0</xsl:param>
<xsl:param name="admon.style" />
</xsl:stylesheet>
|