1
0
Fork 0
apt/doc/manpage-style.xsl.cmake.in
Daniel Baumann 6810ba718b
Adding upstream version 3.0.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-20 21:10:43 +02:00

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">&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>