<?xml version="1.0" encoding="utf-8"?>

<xsl:stylesheet
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
  xmlns:html="http://www.w3.org/1999/xhtml"
  version="1.0">

  <!-- $Id -->

  <xsl:template match="html:html">
    <xsl:apply-templates/>
  </xsl:template>

  <xsl:template match="html:body">
    <rdf:RDF>
      <xsl:apply-templates/>
    </rdf:RDF>
  </xsl:template>

  <xsl:template match="html:dl">
    <xsl:apply-templates/>
  </xsl:template>

  <xsl:template match="html:dt">
    <xsl:apply-templates/>
  </xsl:template>

  <xsl:template match="html:a">
    <rdf:Description>
      <xsl:attribute name="rdf:about"><xsl:value-of select="@href"/></xsl:attribute>
      <rdfs:label><xsl:value-of select="."/></rdfs:label>
    </rdf:Description>
  </xsl:template>

  <xsl:template match="*"/>

</xsl:stylesheet>