manpage-style.xsl.cmake.in 498 B

12345678910111213141516171819
  1. <xsl:stylesheet
  2. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  3. version="1.0">
  4. <xsl:import href="@DOCBOOK_XSL@/manpages/docbook.xsl" />
  5. <xsl:param name="man.output.encoding" select="'UTF-8'" />
  6. <xsl:template match="email">&lt;<xsl:apply-templates/>&gt;</xsl:template>
  7. <xsl:template match="date">
  8. <xsl:call-template name="datetime.format">
  9. <xsl:with-param name="date" select="."/>
  10. <xsl:with-param name="format" select="'d B Y'"/>
  11. </xsl:call-template>
  12. </xsl:template>
  13. </xsl:stylesheet>