aboutsummaryrefslogtreecommitdiffstats
path: root/lib/erl_docgen/priv/xsl/db_html.xsl
diff options
context:
space:
mode:
authorLars Thorsen <[email protected]>2017-10-09 10:21:46 +0200
committerLars Thorsen <[email protected]>2017-10-09 10:21:46 +0200
commita23e06da1942801b253e5e4f7461b318d8508ea6 (patch)
tree7dd4b9221ef1e7a5e450d9960814a8b9233791e5 /lib/erl_docgen/priv/xsl/db_html.xsl
parentd26187bcd2c12cfc126367f510a812b7b47899f2 (diff)
downloadotp-a23e06da1942801b253e5e4f7461b318d8508ea6.tar.gz
otp-a23e06da1942801b253e5e4f7461b318d8508ea6.tar.bz2
otp-a23e06da1942801b253e5e4f7461b318d8508ea6.zip
[erl_docgen] Fix spacing for code blocks
Diffstat (limited to 'lib/erl_docgen/priv/xsl/db_html.xsl')
-rw-r--r--lib/erl_docgen/priv/xsl/db_html.xsl10
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/erl_docgen/priv/xsl/db_html.xsl b/lib/erl_docgen/priv/xsl/db_html.xsl
index a5e277aece..75614392fb 100644
--- a/lib/erl_docgen/priv/xsl/db_html.xsl
+++ b/lib/erl_docgen/priv/xsl/db_html.xsl
@@ -30,6 +30,7 @@
xmlns:fn="http://www.w3.org/2005/02/xpath-functions">
<xsl:include href="db_html_params.xsl"/>
+ <xsl:include href="db_funcs.xsl"/>
<func:function name="erl:flip_first_char">
<xsl:param name="in"/>
@@ -1132,7 +1133,14 @@
<xsl:variable name="codenum">
<xsl:number level="any" from="chapter" count="code"/>
</xsl:variable>
- <div class="example"><pre><xsl:apply-templates/></pre></div>
+ <xsl:choose>
+ <xsl:when test="not(descendant::anno)">
+ <div class="example"><pre><xsl:value-of select="erl:code_trim(text())"/></pre></div>
+ </xsl:when>
+ <xsl:otherwise>
+ <div class="example"><pre><xsl:apply-templates/></pre></div>
+ </xsl:otherwise>
+ </xsl:choose>
</xsl:template>
<!-- Pre -->