diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/erl_docgen/priv/xsl/db_html.xsl | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/erl_docgen/priv/xsl/db_html.xsl b/lib/erl_docgen/priv/xsl/db_html.xsl index 41aba1dbe9..6862eaf41a 100644 --- a/lib/erl_docgen/priv/xsl/db_html.xsl +++ b/lib/erl_docgen/priv/xsl/db_html.xsl @@ -1069,7 +1069,9 @@ </xsl:for-each> <!-- xsl:value-of select="$partnum"/>.<xsl:value-of select="$chapnum"/>.<xsl:value-of select="$sectnum"/>.<xsl:number/ --> <xsl:call-template name="title_link"> - <xsl:with-param name="title" select="title"/> + <xsl:with-param name="title"> + <xsl:value-of select="title"/> + </xsl:with-param> </xsl:call-template> </h4> <xsl:apply-templates> @@ -1102,7 +1104,9 @@ <xsl:call-template name="marker-before-title"/> </xsl:for-each> <xsl:call-template name="title_link"> - <xsl:with-param name="title" select="title"/> + <xsl:with-param name="title"> + <xsl:value-of select="title"/> + </xsl:with-param> </xsl:call-template> </h3> <div class="REFBODY rb-3"> |