]> pere.pagekite.me Git - text-free-culture-lessig.git/blob - data/html.xsl
Add missing title to the <dedication> hack.
[text-free-culture-lessig.git] / data / html.xsl
1 <?xml version="1.0"?>
2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
3
4 <xsl:param name="chunk.section.depth">0</xsl:param>
5 <xsl:param name="section.autolabel">1</xsl:param>
6 <xsl:param name="section.label.includes.component.label">1</xsl:param>
7 <xsl:param name="use.id.as.filename">1</xsl:param>
8 <!-- Restore previous default value with openjade -->
9 <xsl:param name="autotoc.label.in.hyperlink" select="0"></xsl:param>
10 <xsl:param name="toc.section.depth">3</xsl:param>
11
12 <!-- Add <hr> after the dedication block, based on block from
13 /usr/share/xml/docbook/stylesheet/docbook-xsl/html/component.xsl
14 -->
15 <xsl:template match="dedication" mode="dedication">
16 <xsl:call-template name="id.warning"/>
17 <div>
18 <xsl:call-template name="common.html.attributes">
19 <xsl:with-param name="inherit" select="1"/>
20 </xsl:call-template>
21 <xsl:call-template name="id.attribute">
22 <xsl:with-param name="conditional" select="0"/>
23 </xsl:call-template>
24 <xsl:call-template name="dedication.titlepage"/>
25 <xsl:apply-templates/>
26 <xsl:call-template name="process.footnotes"/>
27 </div>
28 <hr/>
29 </xsl:template>
30 </xsl:stylesheet>