GRDDL: an 80/20 solution


  1. Pick a way of expressing data in XHTML, and get an XSLT transformation to RDF; for example:
  2. Make links from your XHTML data to the transformation, using the transformation link type
  3. Reference the GRDDL profile to make it clear what that transformation link type means
    <html xmlns="http://www.w3.org/1999/xhtml">
      <head profile="http://www.w3.org/2003/g/data-view">
        <title>Some Document</title>
        <link rel="transformation"
           href="http://www.w3.org/2000/06/dc-extract/dc-extract.xsl" />
        <meta name="DC.Subject"
           content="ADAM; Simple Search; Index+; prototype" />
        ...
      </head>
      ...
    </html>