Glen Peterson
-
2003-09-09
- priority: 5 --> 7
This is the indentation I get if I don't fiddle:
<xsl:param name="myParam" />
<!--
<xsl:choose>
<xsl:when test="$myParam = 3">
<xsl:text>It's three</xsl:text>
-->
<xsl:if
This is what I want:
<xsl:param name="myParam" />
<!--
<xsl:choose>
<xsl:when test="$myParam = 3">
<xsl:text>It's three</xsl:text>
-->
<xsl:if
If I get something different inside the comment, that is
OK, but my <xsl:if should line up exactly under the
<xsl:param.
Log in to post a comment.