elements inside comment
Posted: Wed Aug 02, 2006 10:57 am
Hi,
How can i get elements inside a comment?
When i say:
i get as result just
When i say:
i get:
(as expected)
How to get the element inside the comment?
Thanks, Hans
How can i get elements inside a comment?
When i say:
Code: Select all
<xsl:comment>
<test><xsl:value-of select="'blabla'"/></test>
</xsl:comment>
Code: Select all
<!---->
Code: Select all
<xsl:comment>
<xsl:value-of select="'blabla'"/>
</xsl:comment>
Code: Select all
<!-- blabla -->
How to get the element inside the comment?
Thanks, Hans