Commit 7482fc46 authored by Peter Eisentraut's avatar Peter Eisentraut

doc: Supply XSLT template for superscript element in man pages

The default is no decoration, which looks confusing, for example on the
CREATE SEQUENCE man page.
parent f36ca9af
...@@ -40,6 +40,13 @@ ...@@ -40,6 +40,13 @@
</xsl:template> </xsl:template>
<!-- Make superscripts visible in man pages (default is no decoration) -->
<xsl:template match="superscript">
<xsl:text>^</xsl:text>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="refentry" mode="xref-to"> <xsl:template match="refentry" mode="xref-to">
<xsl:param name="referrer"/> <xsl:param name="referrer"/>
<xsl:param name="xrefstyle"/> <xsl:param name="xrefstyle"/>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment