- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 22 Apr 2011 11:12:17 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec-author-view/tools
In directory hutz:/tmp/cvs-serv4066/tools
Added Files:
toc-fix.xsl
Log Message:
updated
--- NEW FILE: toc-fix.xsl ---
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:h="http://www.w3.org/1999/xhtml"
exclude-result-prefixes="h"
version='1.0'>
<xsl:output method="html" indent="no" encoding="utf-8"
doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"
doctype-system="http://www.w3.org/TR/html4/loose.dtd"
/>
<xsl:template match="node() | @*">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="ol[not(child::li)]"/>
</xsl:stylesheet>
Received on Friday, 22 April 2011 11:12:18 UTC