--- a/rdf-primer/index.html Mon Dec 16 10:28:50 2013 +0100
+++ b/rdf-primer/index.html Mon Dec 16 13:29:38 2013 +0100
@@ -655,12 +655,12 @@
represented in Turtle as follows:</p>
<pre class="example" id="turtle-example">
-01 @base <http://example.org/> .
-02 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
-03 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
-04 @prefix schema: <http://schema.org/> .
-05 @prefix dcterms: <http://purl.org/dc/terms/> .
-06 @prefix wd: <http://www.wikidata.org/entity/> .
+01 BASE <http://example.org/>
+02 PREFIX foaf: <http://xmlns.com/foaf/0.1/>
+03 PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
+04 PREFIX schema: <http://schema.org/>
+05 PREFIX dcterms: <http://purl.org/dc/terms/>
+06 PREFIX wd: <http://www.wikidata.org/entity/>
07
08 <bob#me>
09 a foaf:Person ;
@@ -684,18 +684,16 @@
be use for prefixed names (such as <code>foaf:Person</code>) instead of full IRIs.
The corresponding IRI is constructed by replacing the prefix with its
corresponding IRI (in this example <code>foaf:Person</code> stands for
-<code><http://xmlns.com/foaf/0.1/Person></code>). A period is used to
-signal the end of a Turtle statement. </p>
-
-<p class="issue">
-Use SPARQL-style prefix?
-</p>
+<code><http://xmlns.com/foaf/0.1/Person></code>).</p>
<p>Lines 8-12 show how Turtle provides a shorthand for a set of
triples with the same subject. Lines 9-12 specify the predicate-object
part of triples with <code><http://example.org/bob#me></code> as
subject. The semicolons at the end of lines 9-11 indicate that the
-set is not yet complete. The triple represented by line 10 looks in
+set is not yet complete. A period is used to
+signal the end of a Turtle statement.</p>
+
+<P>The triple represented by line 10 looks in
its expanded form like this (see the <a href="#subsection-ntriples">N-Triples example</a>
for the expanded form of the full example):</p>
<pre>
@@ -707,8 +705,8 @@
<code>a</code> predicate
is a shorthand for the property <code>rdf:type</code> which models the
instance relation (see Table <a href="#table-rdf-schema">"RDF Schema
-constructs"</a>). The <code> a</code> shorthand is intended to match the human
-intuition about <code>rdf:type</code>. <p>
+constructs"</a>). The <code>a</code> shorthand is intended to match the human
+intuition about <code>rdf:type</code>. </p>
<p>In line 11 we see an example of a literal, in this case a date. The
datatype is appended to the literal through a <code>^^</code> delimiter. The date
@@ -743,7 +741,7 @@
earlier cypress-tree example:</p>
<pre class="example">
- @prefix lio: <http://purl.org/net/lio#> .
+ PREFIX lio: <http://purl.org/net/lio#>
<http://dbpedia.org/resource/Mona_Lisa> lio:shows _:x .
_:x a <http://dbpedia.org/resource/Cypress> .
@@ -776,14 +774,14 @@
can be specified in TriG as follows:</p>
<pre class="example" id="trig-example">
-01 @base <http://example.org/> .
-02 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
-03 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
-04 @prefix schema: <http://schema.org/> .
-05 @prefix dcterms: <http://purl.org/dc/terms/> .
-06 @prefix wd: <http://www.wikidata.org/entity/> .
+01 BASE <http://example.org/>
+02 PREFIX foaf: <http://xmlns.com/foaf/0.1/>
+03 PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
+04 PREFIX schema: <http://schema.org/>
+05 PREFIX dcterms: <http://purl.org/dc/terms/>
+06 PREFIX wd: <http://www.wikidata.org/entity/>
07
-08 <http://example.org/bob>
+08 GRAPH <http://example.org/bob>
09 {
10 <bob#me>
11 a foaf:Person ;
@@ -792,7 +790,7 @@
14 foaf:topic_interest wd:Q12418 .
15 }
16
-17 <https://www.wikidata.org/wiki/Special:EntityData/Q12418>
+17 GRAPH <https://www.wikidata.org/wiki/Special:EntityData/Q12418>
18 {
19 wd:Q12418
20 dcterms:title "Mona Lisa" ;