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:
parent
6b511090c5
commit
4a661c5b0c
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue
Block a user