summaryrefslogtreecommitdiff
path: root/docs/xslt/man.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'docs/xslt/man.xsl')
-rw-r--r--docs/xslt/man.xsl27
1 files changed, 27 insertions, 0 deletions
diff --git a/docs/xslt/man.xsl b/docs/xslt/man.xsl
index e403122965..99b2112cb3 100644
--- a/docs/xslt/man.xsl
+++ b/docs/xslt/man.xsl
@@ -115,5 +115,32 @@
<xsl:apply-templates/>
</xsl:template>
+ <!-- ================================================================== -->
+ <!-- These macros are from Docbook manpages XSLT development tree -->
+ <!-- help to maintain manpage generation clean when difference between -->
+ <!-- roff processors is important to note. -->
+
+ <xsl:template name="roff-if-else-start">
+ <xsl:param name="condition">n</xsl:param>
+ <xsl:text>.ie </xsl:text>
+ <xsl:value-of select="$condition"/>
+ <xsl:text> \{\&#10;</xsl:text>
+ </xsl:template>
+
+ <xsl:template name="roff-if-start">
+ <xsl:param name="condition">n</xsl:param>
+ <xsl:text>.if </xsl:text>
+ <xsl:value-of select="$condition"/>
+ <xsl:text> \{\&#10;</xsl:text>
+ </xsl:template>
+
+ <xsl:template name="roff-else">
+ <xsl:text>.\}&#10;</xsl:text>
+ <xsl:text>.el \{\&#10;</xsl:text>
+ </xsl:template>
+
+ <xsl:template name="roff-if-end">
+ <xsl:text>.\}&#10;</xsl:text>
+ </xsl:template>
</xsl:stylesheet>