--- a/rdf-primer/index.html	Wed Aug 14 12:37:59 2013 +0100
+++ b/rdf-primer/index.html	Wed Aug 14 12:42:39 2013 +0100
@@ -386,7 +386,7 @@
       literals. Turtle provides a good trade-off between ease of writing, ease of parsing and readability.</p>
 
       <pre>
-@base <http://example.org/>
+@base <http://example.org/> .
 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
 @prefix schema: <http://schema.org/> .
@@ -463,7 +463,27 @@
       <p>...</p>
 
       <pre>
-
+<?xml version="1.0" encoding="utf-8"?>
+<rdf:RDF
+   xmlns:dcterms="http://purl.org/dc/terms/"
+   xmlns:foaf="http://xmlns.com/foaf/0.1/"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:schema="http://schema.org/"
+   xmlns:wd="http://www.wikidata.org/entity/"
+   xmlns:xsd="http://www.w3.org/2001/XMLSchema#">
+  <foaf:Person rdf:about="http://example.org/bob#me">
+    <schema:birthDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">1990-07-04</schema:birthDate>
+    <foaf:knows rdf:resource="http://example.org/alice#me"/>
+    <foaf:topic_interest rdf:resource="http://www.wikidata.org/entity/Q12418"/>
+  </foaf:Person>
+  <foaf:Person rdf:about="http://viaf.org/viaf/24604287/">
+    <foaf:made rdf:resource="http://www.wikidata.org/entity/Q12418"/>
+    <foaf:name>Leonardo da Vinci</foaf:name>
+  </foaf:Person>
+  <rdf:Description rdf:about="http://data.europeana.eu/item/04802/243FA8618938F4117025F17A8B813C5F9AA4D619">
+    <dcterms:subject rdf:resource="http://www.wikidata.org/entity/Q12418"/>
+  </rdf:Description>
+</rdf:RDF>
       </pre>
 
     </section>