mirror of
https://github.com/postgres/postgres.git
synced 2025-12-19 17:02:53 +03:00
tool chain. With some polishing, this might help us get rid of our ancient and crufty man page build mechanism.
17 lines
482 B
XML
17 lines
482 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
version="1.0">
|
|
|
|
<xsl:import href="http://docbook2x.sourceforge.net/latest/xslt/man/docbook.xsl"/>
|
|
|
|
<!--
|
|
Man pages don't really support a third section level, but this
|
|
makes our man pages work OK and matches the behavior of the sgmlspl
|
|
style.
|
|
-->
|
|
<xsl:template match="refsect3">
|
|
<xsl:call-template name="SS-section" />
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|