Re: N3 in XHTML / META tag

On Thu, 2009-08-13 at 11:06 +0100, Toby Inkster wrote:
> <script type="text/n3" id="my_data">

This technique opens up some interesting opportunities for multi-graph
data. e.g. Alice could publish:

<script type="text/turtle" id="bobs_claims"><![CDATA[
  <#bob>
     foaf:knows [ foaf:name "Bill Clinton" ] ,
                [ foaf:name "Madonna" ] ,
                [ foaf:name "Salmon Rushdie" ] .
]]></script>

<script type="text/turtle" id="alices_claims"><![CDATA[
  <#bob> rdfs:comment "A liar" .
  <#bobs_claims> rdfs:comment "Stuff and nonsense" .
]]></script>

And then the page could indicate its endorsement of Alice's claims
using:

 <link rel="meta" href="#alices_claims" />

Without endorsing Bob's claims.

A more RDFa-ish way of doing this is:
http://buzzword.org.uk/2009/rdfa4/spec

-- 
Toby A Inkster
<mailto:mail@tobyinkster.co.uk>
<http://tobyinkster.co.uk>

Received on Thursday, 13 August 2009 10:49:43 UTC