doc: Translate doxygen <sp/> tags to spaces

Doxygen represents all spacing in code blocks with <sp/> tags, so these
need to be turned back into spaces.

Signed-off-by: Benjamin Herr <ben@0x539.de>
This commit is contained in:
Benjamin Herr 2014-09-29 17:26:13 +02:00 committed by Pekka Paalanen
parent 6b511090c5
commit 4a661c5b0c

View File

@ -104,6 +104,10 @@
<emphasis>Note: <xsl:apply-templates /></emphasis>
</xsl:template>
<xsl:template match="programlisting//sp">
<xsl:text> </xsl:text>
</xsl:template>
<xsl:template match="programlisting">
<programlisting><xsl:apply-templates /></programlisting>
</xsl:template>