6.11 Configuration Attributes

<?xml version="1.0" encoding="utf-8" ?>  
<xsl:stylesheet version="1.0"  
   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"  
>  
  <xsl:strip-space elements="*" />  
  <xsl:template match="helloWorld" >  
     <html>  
       <head><title>example</title></head>  
       <body>  
          <xsl:apply-templates/>  
       </body>  
     </html>  
  </xsl:template>  
  <xsl:template match="greeting" >  
     <h1>  
       <xsl:apply-templates />  
     </h1>  
  </xsl:template>  
</xsl:stylesheet>  
<?xml version="1.0"  
      encoding="utf-8" ?>  
<helloWorld>  
  <greeting>Hello World!</greeting>  
</helloWorld>  
<html>  
<head>  
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">  
<title>example</title>  
</head>  
<body>  
<h1>Hello World!</h1>  
</body>  
</html>