diff options
-rw-r--r-- | xmlhelp/util/main_transform.xsl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/xmlhelp/util/main_transform.xsl b/xmlhelp/util/main_transform.xsl index 0a612fc3748a..6df417f3f23a 100644 --- a/xmlhelp/util/main_transform.xsl +++ b/xmlhelp/util/main_transform.xsl @@ -365,6 +365,10 @@ <xsl:call-template name="insertbascode" /> </xsl:when> + <xsl:when test="@role='logocode'"> + <xsl:call-template name="insertlogocode" /> + </xsl:when> + <xsl:otherwise> <xsl:call-template name="insertpara" /> </xsl:otherwise> @@ -593,6 +597,11 @@ <pre><xsl:apply-templates /></pre> </xsl:template> +<!-- Insert Logo code snippet --> +<xsl:template name="insertlogocode"> + <pre><xsl:apply-templates /></pre> +</xsl:template> + <!-- Insert "How to get Link" --> <xsl:template name="insert_howtoget"> <xsl:param name="linkhref" /> |