<xsl:stylesheet 
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
    xmlns="http://www.w3.org/1999/xhtml">
  <xsl:template match="/">
    <html xmlns="http://www.w3.org/1999/xhtml">
      <head>
        <title>Demo</title>
      </head>
      <body>
        <h1>Active Output Filters:</h1>
          <ul>
            <xsl:for-each select='demo/filter'>
            <li><xsl:value-of select="text()"/></li>
            </xsl:for-each>
        </ul>
      </body>
    </html>
  </xsl:template>
</xsl:stylesheet>
