--- a/rdf-primer/index.html Wed Aug 14 17:40:30 2013 +0100
+++ b/rdf-primer/index.html Wed Aug 14 22:10:40 2013 +0100
@@ -463,7 +463,32 @@
<h3>RDFa</h3>
- <p>RDFa [[RDFA-PRIMER]] can be used to embed RDF data within HTML documents. </p>
+ <p>RDFa [[RDFA-PRIMER]] can be used to embed RDF data within HTML documents. Our example
+ can be represented in RDFa as follows.
+ </p>
+
+ <pre>
+<div prefix="
+ rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns#
+ foaf: http://xmlns.com/foaf/0.1/
+ wd: http://www.wikidata.org/entity/
+ dcterms: http://purl.org/dc/terms/
+ xsd: http://www.w3.org/2001/XMLSchema#">
+ <div typeof="foaf:Person" about="http://example.org/bob#me">
+ <p>
+ Bob knows <a rel="foaf:knows" href="http://example.org/alice#me">Alice</a>
+ and was born on the <span property="schema:birthDate" datatype="xsd:date">1990-07-04</span>.
+ </p>
+ <p>
+ Bob is interested in <a rel="foaf:topic_interest" resource="wd:Q12418">the Mona Lisa</a>.
+ </p>
+ <div about="wd:Q12418">
+ The Mona Lisa was painted by <a rev="foaf:maker" typeof="foaf:Person" href="http://viaf.org/viaf/24604287/"><span property="foaf:name">Leonardo da Vinci</span></a>
+ and is the subject of this <a rev="dcterms:subject" href="http://data.europeana.eu/item/04802/243FA8618938F4117025F17A8B813C5F9AA4D619">video document</a>.
+ </div>
+ </div>
+</div>
+ </pre>
</section>
@@ -472,7 +497,7 @@
<h3>RDF/XML</h3>
<p>RDF/XML [[RDF-SYNTAX-GRAMMAR]] provides an XML syntax for RDF
- graphs. RDF/XML was the only normative syntax for RDF before the RDF 1.1 set of recommendations, introducing multiple
+ graphs. RDF/XML was the only normative syntax for RDF before the RDF 1.1 set of recommendations introduced multiple
syntaxes for RDF graphs. Our example can be represented in RDF/XML as follows.</p>
<pre>