d4ce47e7fb
This works around GitHub's broken automatic reformatting from ISO-8859-1 to UTF-8 when serving static html. Remove <parameter/> from e.g. <function>malloc<parameter/></function>, add a custom template that does not append parentheses, and manually specify them, e.g. <function>malloc()</function>. This works around apparently broken XSL formatting that causes <code/> to be emitted in html (rather than <code></code>, or better yet, nothing).
11 lines
402 B
XML
11 lines
402 B
XML
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
<xsl:param name="funcsynopsis.style">ansi</xsl:param>
|
|
<xsl:param name="function.parens" select="0"/>
|
|
<xsl:template match="function">
|
|
<xsl:call-template name="inline.monoseq"/>
|
|
</xsl:template>
|
|
<xsl:template match="mallctl">
|
|
"<xsl:call-template name="inline.monoseq"/>"
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|