--- a/rdf-primer/index.html Mon Apr 15 14:52:51 2013 +0100
+++ b/rdf-primer/index.html Mon Apr 15 16:07:31 2013 +0100
@@ -295,15 +295,18 @@
can be represented in N-Triples as follows.</p>
<pre>
-<http://example.org/#bob> <http://example.org/#knows> <http://example.org/#alice>.
+<http://example.org/#bob> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person>.
+<http://example.org/#alice> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person>.
+<http://example.org/#bob> <http://xmlns.com/foaf/0.1/knows> <http://example.org/#alice>.
<http://example.org/#bob> <http://example.org/#birth-date> "1990-07-04"^^<http://www.w3.org/2001/XMLSchema#date>.
-<http://example.org/#da-vinci> <http://example.org/#created> <http://example.org/#the-mona-lisa>.
+<http://example.org/#da-vinci> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person>.
+<http://example.org/#da-vinci> <http://xmlns.com/foaf/0.1/made> <http://example.org/#the-mona-lisa>.
<http://example.org/#the-mona-lisa> <http://example.org/#on-display-in> <http://example.org/#the-louvre>.
<http://example.org/#bob> <http://example.org/#likes> <http://example.org/#the-mona-lisa>.
</pre>
<p>N-Triples is often used for RDF examples, exchanging large RDF datasets, and processing large RDF graphs
- with text processing tools.</p>
+ with line-oriented text processing tools.</p>
<h3>N-quads</h3>
@@ -316,6 +319,31 @@
<http://example.org/#bob> <http://example.org/#knows> <http://example.org/#alice> <http://example.org/#graph-1>.
</pre>
+ <h3>Turtle</h3>
+
+ <p><a href="http://www.w3.org/TR/turtle/">Turtle</a> provides a convenient syntax for RDF graphs, introducing numerous
+ syntax shortcuts when compared with N-Triples, such as the support for namespaces, lists and shorthands for data-typed
+ literals. Turtle provides a good trade-off between ease of writing, ease of parsing and readability.</p>
+
+ <pre>
+@prefix foaf: <http://xmlns.com/foaf/0.1/> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#>
+@prefix : <http://example.org/#> .
+
+:bob
+ a foaf:Person ;
+ foaf:knows :alice ;
+ :birth-date "1990-07-04"^^xsd:date ;
+ :likes :the-mona-lisa .
+:alice
+ a foaf:Person .
+:da-vinci
+ a foaf:Person ;
+ foaf:made :the-mona-lisa .
+:the-mona-lisa
+ :on-display-in :the-louvre .
+ </pre>
+
</section>
<section id="section-vocabulary">