<?xml version="1.0" encoding="utf-8"?><!-- DWXMLSource="http://newsrss.bbc.co.uk/rss/newsonline_world_edition/front_page/rss.xml" --><!DOCTYPE xsl:stylesheet  [
	<!ENTITY nbsp   "&#160;">
	<!ENTITY copy   "&#169;">
	<!ENTITY reg    "&#174;">
	<!ENTITY trade  "&#8482;">
	<!ENTITY mdash  "&#8212;">
	<!ENTITY ldquo  "&#8220;">
	<!ENTITY rdquo  "&#8221;"> 
	<!ENTITY pound  "&#163;">
	<!ENTITY yen    "&#165;">
	<!ENTITY euro   "&#8364;">
]>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:media="http://search.yahoo.com/mrss">
<xsl:output method="html" encoding="utf-8"/>
<xsl:template match="/">
<xsl:for-each select="rss/channel/item">
  <xsl:if test="position() &lt;= 5">
  <h3><a href="{link}"><xsl:value-of select="title"/></a></h3>
  <p><xsl:value-of select="description" disable-output-escaping="yes"/></p>
  </xsl:if>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>