I want to create conditional comments in XSLT.

But when I use this:

<!-- [If IE7] [endif] -->

in an <xsl:comment>, XSLT removes it from the output when it is rendered.

Is there any way to create conditional comments in XSLT?

link|improve this question

feedback

2 Answers

up vote 10 down vote accepted

Simply use an <xsl:comment> tag and include your comment within the tag.

For example:

<xsl:if test="@id = '1'">
  <xsl:comment>
    <![CDATA[[if IE]><![endif]]]>
  </xsl:comment>
</xsl:if>

Taming Your Multiple IE Standalones is a great article on this subject.

link|improve this answer
Yeah.. It works :) Why you used first line of Code? <xsl:if test="@id='a'"> – Wasim Shaikh May 2 '09 at 6:19
The <xsl:if> ? I thought that you needed the comment to be included conditionally! Where's my vote/acceptance ?! ;-) – Cerebrus May 2 '09 at 6:30
Vote added. ;-) A conditional comment is included unconditionally. But IE evaluates the comment as a conditional -- if it evaluates to true, the code within gets executed. – Tomalak May 2 '09 at 7:45
Thanks. This is great. – atomicules Jul 16 '10 at 12:34
feedback

The above solution assumes that the content inside the conditional comment does not contain any XSLT parameters. In the example below we're having a parameter $DATA_ROOT_PATH that should be processed to give us the correct location of a CSS file. In this case <xsl:comment/> is not suitable. We must use <xsl:text/> and disable the output escaping.

The example here will include the CSS file only if we're using IE7.

<xsl:text disable-output-escaping="yes">&lt;!--[if IE 7]&gt;</xsl:text>
  <link rel="stylesheet" type="text/css" href="{$DATA_ROOT_PATH}/resources/css/ie7.css" media="screen"/>
<xsl:text disable-output-escaping="yes">&lt;![endif]]]&gt;--&gt;</xsl:text>

The code example would generate output like so if $DATA_ROOT_PATH = /example:

<!--[if IE 7]>
  <link rel="stylesheet" type="text/css"
        href="/example/resources/css/ie7.css"
        media="screen" />
<![endif]]]>-->
link|improve this answer
1  
You wrote "<xsl:comment/> is not suitable", but it is as per w3.org/TR/xslt#section-Creating-Comments : "<!-- Category: instruction --> <xsl:comment> <!-- Content: template --> </xsl:comment> " It means that you can use any content template inside xsl:comment instruction as long as it output nothing else than text nodes. – user357812 Apr 15 '11 at 20:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.