<?xml version="1.0" encoding="utf-8"?><!DOCTYPE xsl:stylesheet [ ]><xsl:stylesheet 				xmlns:xsl="http://www.w3.org/1999/XSL/Transform"                version="1.0"><xsl:output method="xml" indent="yes"/><xsl:template match="faq"><html><head><title>XML FAQ</title></head><body><xsl:apply-templates/></body></html></xsl:template><xsl:template match="faq-info">	<xsl:apply-templates />    	<h1>Table of Contents</h1>         <table>      	<xsl:for-each select="//section">      	<tr>      	<td width="30"><xsl:number format="1.1" level="single" from="s1" count="section|section-title" /></td>		<td><xsl:value-of select="./section-title"/></td>      </tr>                  	<xsl:for-each select="item/title">      	<tr>      	<td width="30"><xsl:number format="1 A " level="multiple" from="s1" count="section|item" /></td><td><a><xsl:attribute name="href"><xsl:text>#</xsl:text><xsl:number format="1-A" level="multiple" from="s1" count="section|item" /></xsl:attribute><xsl:value-of select="."/></a></td>      </tr>            </xsl:for-each>            </xsl:for-each></table><p></p><p></p></xsl:template><xsl:template match="p">	<p>		      <xsl:apply-templates/>    </p></xsl:template><xsl:template match="title">	<H4> <a><xsl:attribute name="name"><xsl:number format="1-A" level="multiple" from="s1" count="section|item" /></xsl:attribute></a><xsl:number format="1 A " level="multiple" from="s1" count="section|item" /> <xsl:apply-templates/>      </H4></xsl:template><xsl:template match="section-title">	<table>      	<tr>      	<td width="30"><h1><xsl:number format="1.1" level="multiple" from="s1" count="section" /></h1></td>	    <td><h1><xsl:apply-templates/></h1></td>      </tr>   </table></xsl:template><xsl:template match="code">	<pre>		      <xsl:apply-templates/>    </pre> </xsl:template>            <xsl:template match="h3">	<h3><xsl:apply-templates/></h3></xsl:template><xsl:template match="link">	<a><xsl:attribute name="HREF"><xsl:value-of select="@url" /></xsl:attribute><xsl:apply-templates/></a></xsl:template></xsl:stylesheet>
