18 lines
498 B
CMake
18 lines
498 B
CMake
<xsl:stylesheet
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
version="1.0">
|
|
|
|
<xsl:import href="@DOCBOOK_XSL@/manpages/docbook.xsl" />
|
|
|
|
<xsl:param name="man.output.encoding" select="'UTF-8'" />
|
|
|
|
<xsl:template match="email"><<xsl:apply-templates/>></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>
|