"Janwillem Borleffs" <> wrote in
news:3ff6c163$0$23710$:
> Jyrki Keisala wrote:
>> Thanks for the valuable tip. Everything seems to work just fine; I
>> have just one further question: for what is the "select="link|text()"
>> needed? Everything seems to work just fine for me even without that,
>> so a plain
>>
>> <xsl:for-each select="child::*">
>> <td><xsl:apply-templates /></td>
>> </xsl:for-each>
>>
>> seems to be able to handle the links exactly correct...
>>
>
> It selects the <link /> element or a text node when available. I have
> put it in mainly to show you how to work with apply-templates select
> attribute.
>
> This can be very useful when you want to match specific nodes only...
>
>
> JW
>
>
>
>
OK, thanks veeery much; it works for me now
Jyrki