html.xsl 661 B

123456789101112
  1. <!-- Set parameters for manpage xsl -->
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  3. <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl"/>
  4. <xsl:output encoding="utf-8" indent="yes"/>
  5. <xsl:param name="html.stylesheet">man.css</xsl:param>
  6. <!-- Generate ansi style function synopses. -->
  7. <xsl:param name="man.funcsynopsis.style">ansi</xsl:param>
  8. <xsl:param name="make.clean.html" select="1"></xsl:param>
  9. <xsl:param name="make.valid.html" select="1"></xsl:param>
  10. <xsl:param name="html.cleanup" select="1"></xsl:param>
  11. <xsl:param name="docbook.css.source"></xsl:param>
  12. </xsl:stylesheet>