<?xml version="1.0"?>
<!-- Copyright 2004 Rowan Rodrik van der Molen
   - Distributed under the terms of the GNU General Public Licence v2
   - Transform a Mozilla bookmark file into an XBEL file -->

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  <xsl:output method="xml"
    doctype-system="http://www.python.org/topics/xml/dtds/xbel-1.0.dtd"
    doctype-public="+//IDN python.org//DTD XML Bookmark Exchange Language 1.0//EN//XML" />

  <xsl:template match="/">
    <xbel version="1.0">
      <title><xsl:value-of select="TITLE" /></title>

      <xsl:apply-templates select="DL/p" />
    </xbel>
  </xsl:template>


  <xsl:template match="DL/p">
  </xsl:template>
</xsl:stylesheet>
