<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" />
<xsl:template match="/">
<xsl:for-each select="rss/channel">
*********<xsl:value-of select="title" />*********
<xsl:value-of select="description" />

Last updated: <xsl:value-of select="lastBuildDate" />

<xsl:for-each select="item">

***<xsl:value-of select="title" />***
<xsl:value-of select="description[text()]" />

Date: <xsl:value-of select="pubDate" />
Link: <xsl:value-of select="link" />
</xsl:for-each>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>



