man.xsl 838 B

12345678910111213141516171819202122232425
  1. <?xml version='1.0'?>
  2. <!-- This file wraps around the DocBook XSL manpages stylesheet to customise
  3. - some parameters; add the CSS stylesheet, etc.
  4. -->
  5. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  6. version='1.0'
  7. xmlns="http://www.w3.org/TR/xhtml1/transitional"
  8. exclude-result-prefixes="#default">
  9. <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl"/>
  10. <xsl:param name="man.output.quietly" select="1"/>
  11. <xsl:param name="man.endnotes.list.enabled">1</xsl:param>
  12. <xsl:param name="man.endnotes.are.numbered">1</xsl:param>
  13. <!-- by convention, only RFC references will be used. -->
  14. <xsl:param name="man.endnotes.list.heading">References</xsl:param>
  15. <xsl:param name="man.authors.section.enabled">0</xsl:param>
  16. </xsl:stylesheet>