Forum Moderators: mack
[w3schools.com ] has a good basic introduction to XML and XSL.
I'd recommend reading the w3c recommendation [w3.org] and also the XSLT faq [dpawson.co.uk].
If your question was asking how to break a long list into groups then the 'Alternate nodes'/'Split a long list into groups' on the faq shows that.
Hope that helps.
<xsl:text>some text</xsl:text>
<xsl:value-of select="."/>
will both create output strings.
something like
<xsl:if test="rss/channel/item/description">
{do something}
</xsl:if>
would determine if there is description in the rss xml but I know too little about rss to know this is the best approach. I expect the xpath would also depend which version rss your looking at.
The RSS forum [webmasterworld.com] might know better, although there's not much XSL talked there.