keep indentation in Logo code examples

Change-Id: Ife5aed42af9daeebba4d70899383d2bd0213aded
This commit is contained in:
Andras Timar
2012-11-29 21:56:53 +01:00
parent 16fdc21a36
commit ab5af23e72

View File

@@ -365,6 +365,10 @@
<xsl:call-template name="insertbascode" /> <xsl:call-template name="insertbascode" />
</xsl:when> </xsl:when>
<xsl:when test="@role='logocode'">
<xsl:call-template name="insertlogocode" />
</xsl:when>
<xsl:otherwise> <xsl:otherwise>
<xsl:call-template name="insertpara" /> <xsl:call-template name="insertpara" />
</xsl:otherwise> </xsl:otherwise>
@@ -593,6 +597,11 @@
<pre><xsl:apply-templates /></pre> <pre><xsl:apply-templates /></pre>
</xsl:template> </xsl:template>
<!-- Insert Logo code snippet -->
<xsl:template name="insertlogocode">
<pre><xsl:apply-templates /></pre>
</xsl:template>
<!-- Insert "How to get Link" --> <!-- Insert "How to get Link" -->
<xsl:template name="insert_howtoget"> <xsl:template name="insert_howtoget">
<xsl:param name="linkhref" /> <xsl:param name="linkhref" />