<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:n="http://outerx.org/daisy/1.0#navigationspec"
  xmlns:b="http://outerx.org/daisy/1.0#bookdef"
  version='1.0'>

  <xsl:template match="n:navigationTree">
    <b:book>
      <b:content>
        <xsl:apply-templates/>
      </b:content>
    </b:book>
  </xsl:template>

  <xsl:template match="n:doc">
    <b:section documentId="{@id}">
      <xsl:apply-templates/>
    </b:section>
  </xsl:template>

  <xsl:template match="n:group">
    <b:section title="{@label}">
      <xsl:apply-templates/>
    </b:section>
  </xsl:template>

</xsl:stylesheet>
