XSLT: opening but not closing tags
Posted
by farhad
on Stack Overflow
See other posts from Stack Overflow
or by farhad
Published on 2010-05-20T09:17:16Z
Indexed on
2010/05/20
9:20 UTC
Read the original article
Hit count: 422
Is there a way to open a tag and not close it? For example:
<xsl:for-each select=".">
<span>
</xsl:for-each>
This piece of code is not valid because XSLT is not well formed, but is there a way to do a similar thing? Thank you
© Stack Overflow or respective owner