<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" />

<xsl:template match="/">
  <xsl:apply-templates select="rss/channel"/>
</xsl:template>

<xsl:template match="channel">
  <channel>
  <xsl:text>&#xA;</xsl:text>
  <xsl:apply-templates select="item"/>
  <xsl:text>&#xA;</xsl:text>
  </channel>
</xsl:template>

<xsl:template match="item|title|link|description">
  <xsl:copy>
  <xsl:apply-templates/>
  </xsl:copy>
  <xsl:text>&#xA;</xsl:text>
</xsl:template>

</xsl:stylesheet>