xsl-list
[Top] [All Lists]

Re: xslt2 complex content sequences

2005-09-05 09:42:49
On 9/5/05, David Carlisle <davidc(_at_)nag(_dot_)co(_dot_)uk> wrote:

me> Which produces the right thing, but that seems a bit unnatural.

<a>
 <xsl:sequence select="1"/>
 <xsl:sequence select="2"/>
<xsl:text/>
 <xsl:sequence select="3"/>
</a>

Also seems to work and looks rather more natural.

How about:

<a>
<xsl:value-of separator=" ">
 <xsl:sequence select="1"/>
 <xsl:sequence select="2"/>
 </xsl:value-of>
 <xsl:sequence select="3"/>
</a>

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>