<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  version="1.0">

  <xsl:output 
    method="xml" indent="yes" encoding="iso-8859-1"
    doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
    doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/>

  <xsl:template match="/memo">
    <html xmlns="http://www.w3.org/1999/xhtml">
      <head> <title><xsl:value-of select="title" /></title> </head>
      <body> 
        <h1> <xsl:value-of select="title" /></h1>
        <xsl:apply-templates /> 
      </body>
    </html>
  </xsl:template>

  <xsl:template match="p">
    <p xmlns="http://www.w3.org/1999/xhtml"><xsl:value-of select="." /></p>
  </xsl:template>

  <xsl:template match="*" />
  
</xsl:stylesheet>



