Fix spelling error in docs.
[PostgreSQL.git] / doc / src / sgml / stylesheet-hh.xsl
blob1c50518c706ef15da0675aa34e53dae3d0d19278
1 <?xml version='1.0'?>
2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3 version='1.0'
4 xmlns="http://www.w3.org/TR/xhtml1/transitional"
5 exclude-result-prefixes="#default">
7 <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/htmlhelp/htmlhelp.xsl"/>
8 <xsl:include href="stylesheet-common.xsl" />
10 <!-- Parameters -->
11 <xsl:param name="htmlhelp.use.hhk" select="'1'"/>
13 <xsl:param name="html.stylesheet" select="'stylesheet.css'"></xsl:param>
14 <xsl:param name="use.id.as.filename" select="'1'"></xsl:param>
15 <xsl:param name="make.valid.html" select="1"></xsl:param>
16 <xsl:param name="generate.id.attributes" select="1"></xsl:param>
17 <xsl:param name="generate.legalnotice.link" select="1"></xsl:param>
18 <xsl:param name="link.mailto.url">pgsql-docs@postgresql.org</xsl:param>
19 <xsl:param name="chunker.output.indent" select="'yes'"/>
20 <xsl:param name="chunk.quietly" select="1"></xsl:param>
23 <!--
24 Format multiple terms in varlistentry vertically, instead
25 of comma-separated.
26 -->
28 <xsl:template match="varlistentry/term[position()!=last()]">
29 <span class="term">
30 <xsl:call-template name="anchor"/>
31 <xsl:apply-templates/>
32 </span><br/>
33 </xsl:template>
35 </xsl:stylesheet>