view doc/wiki2docbook/html2db/extract-section.xsl @ 1797:203404cc8e98

fixed reference count there was a bug in reference count on writting unsaved metadata before starting an external editor
author nadvornik
date Sun, 14 Feb 2010 21:35:11 +0000
parents 2ae81598b254
children
line wrap: on
line source

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:h="http://www.w3.org/1999/xhtml"
                version="1.0">
  
  <xsl:output method="html"/>
  
  <xsl:template match="/">
    <xsl:apply-templates select="h:html/h:body//h:div[@class='section']"/>
  </xsl:template>
  
  <xsl:template match="@*|node()">
    <xsl:copy>
      <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
  </xsl:template>
</xsl:stylesheet>