--- a/rdf-primer/index.html Wed Feb 19 13:32:20 2014 +0100
+++ b/rdf-primer/index.html Wed Feb 19 13:56:36 2014 +0100
@@ -1239,43 +1239,52 @@
RDF graph depicted in <a href="#fig4">Fig. 4</a>:</p>
<pre class="example" id="rdfa-example">
-01 <div about="http://example.org/bob#me" typeof="http://xmlns.com/foaf/0.1/Person">
-02 <p>
-03 Bob knows <a rel="http://xmlns.com/foaf/0.1/knows" href="http://example.org/alice#me">Alice</a>
-04 and was born on the <span property="http://schema.org/birthDate"
-05 datatype="http://www.w3.org/2001/XMLSchema#date">1990-07-04</span>.
-06 </p>
-07 <p>
-08 Bob is interested in <a rel="http://xmlns.com/foaf/0.1/topic_interest"
-09 href="http://www.wikidata.org/entity/Q12418">the Mona Lisa</a>.
-10 </p>
-11 </div>
-12 <div about="http://www.wikidata.org/entity/Q12418">
-13 <p>
-14 The <span property="http://purl.org/dc/terms/title">Mona Lisa</span>
-15 was painted by <a rel="http://purl.org/dc/terms/creator"
-16 href="http://dbpedia.org/resource/Leonardo_da_Vinci">Leonardo da Vinci</a>
-17 and is the subject of the video <a rev="http://purl.org/dc/terms/subject"
-18 href="http://data.europeana.eu/item/04802/243FA8618938F4117025F17A8B813C5F9AA4D619">
-19 'La Joconde à Washington'</a>.
+01 <body prefix="foaf: http://xmlns.com/foaf/0.1/
+02 schema: http://schema.org/
+03 dcterms: http://purl.org/dc/terms/">
+04 <div resource="http://example.org/bob#me" typeof="foaf:Person">
+05 <p>
+06 Bob knows <a property="foaf:knows" href="http://example.org/alice#me">Alice</a>
+07 and was born on the <time property="schema:birthDate">1990-07-04</time>.
+08 </p>
+09 <p>
+10 Bob is interested in <span property="foaf:topic_interest"
+11 resource="http://www.wikidata.org/entity/">the Mona Lisa</span>.
+12 </p>
+13 </div>
+14 <div resource="http://www.wikidata.org/entity/">
+15 <p>
+16 The <span property="dcterms:title">Mona Lisa</span> was painted by
+17 <a property="dcterms:creator" href="http://dbpedia.org/resource/Leonardo_da_Vinci">Leonardo da Vinci</a>
+18 and is the subject of the video
+19 <a href="http://data.europeana.eu/item/04802/243FA8618938F4117025F17A8B813C5F9AA4D619">'La Joconde à Washington'</a>.
20 </p>
21 </div>
+22 <div resource="http://data.europeana.eu/item/04802/243FA8618938F4117025F17A8B813C5F9AA4D619">
+23 <link property="dcterms:subject" href="http://www.wikidata.org/entity/Q12418">
+24 </div>
+25 </body>
</pre>
-<p>RDFa introduces a number special attributes that enable the
+<p>RDFa introduces a number of special attributes that enable the
specification of triples within HTML. For example, the <code>div</code> elements
-in lines 1 and 12 have an <code>about</code>
+in lines 4 and 14 have a <code>resource</code>
attribute, specifying the IRI about which RDF statements can be made within this
-element. In line 3 we see a <code>rel</code> ("relation") attribute that
-will be interpreted as an RDF property IRI. The
-<code>href</code> attribute value is the object of the triple. This
-result in the triple: <p>
+block. In line 6 we see a <code>property</code> attribute; the value
+of this attribute is interpreted as an RDF property IRI. The property
+is specified as an attribute of an <code>a</code> element; the
+<code>href</code> attribute value is interpreted here as the object of the
+triple. This results in the triple: <p>
<pre class="example">
<http://example.org/bob#me> <http://xmlns.com/foaf/0.1/knows> <http://example.org/alice#me> .
</pre>
-<p>The <code>rel</code> is used in cases where the object is an
+<p>In line 7 we see a triple with as object a literal value. The
+<code>property</code> attribute is specified here on the HTML
+<code>time</code> element. HTML requires that the content of the time element should be some
+valid <a href="http://www.w3.org/TR/html5/text-level-semantics.html#the-time-element">time value</a>.
+with an attribute can also be used is used in cases where the object is an
IRI. Two more examples are found in lines 8 and 15. If the object of
the triple is a literal, then RDFa uses the
<code>property</code> attribute to specify the RDF property IRI. Lines
@@ -1302,7 +1311,7 @@
<p>RDF/XML [[RDF11-XML]] is an XML syntax for RDFD. When RDF was
original developed in the late 1990s, RDF/XML was its only syntax for
-RDF. RDF/XML. The RDF/XML example below encodes the
+RDF. The RDF/XML example below encodes the
RDF graph depicted in <a href="#fig4">Fig. 4</a>:</p>
<pre class="example" id="rdf-xml-example">