<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
  <html>
  <body>
    <table border="1">
      <tr>
        <th>Title</th>
        <th>Summary</th>
	<th>Source</th>
      </tr>
      <xsl:for-each select="InformationResources/News/DigestInformation">
      <tr>
        <td><xsl:value-of select="RevisedTitle"/></td>
        <td><xsl:value-of select="ShortSummary"/></td>
	<td><xsl:value-of select="Source"/></td>
      </tr>
      </xsl:for-each>
    </table>
  </body>
  </html>
</xsl:template>
</xsl:stylesheet>
 
