summaryrefslogtreecommitdiff
path: root/doc/manpage-style.xsl
blob: 5cb6a58c23e3d2091030d0c34edd944c0cd04df3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<xsl:stylesheet
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 version="1.0">

<xsl:import href="/usr/share/xml/docbook/stylesheet/nwalsh/manpages/docbook.xsl" />

<xsl:param name="man.output.encoding" select="'UTF-8'" />
<!-- LANGUAGE -->

<xsl:template match="email">&lt;<xsl:apply-templates/>&gt;</xsl:template>

<xsl:template match="date">
	<xsl:call-template name="datetime.format">
		<xsl:with-param name="date" select="."/>
		<xsl:with-param name="format" select="'d B Y'"/>
	</xsl:call-template>
</xsl:template>

</xsl:stylesheet>