1<?xml version="1.0" encoding="utf-8"?>
2<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3                xmlns:html="http://www.w3.org/1999/xhtml"
4  version="1.0">
5
6  <xsl:template match="/">
7    <xsl:apply-templates/>
8  </xsl:template>
9  
10  <xsl:template match="html:*">
11    matched html:* template
12  </xsl:template>
13
14</xsl:stylesheet>
15