--- a/rdf-primer/index.html Tue Mar 19 11:34:18 2013 +0000
+++ b/rdf-primer/index.html Tue Mar 19 12:57:27 2013 +0000
@@ -198,6 +198,7 @@
<Bob> <is born on> <the 4th of July 1990>.
<Leonardo da Vinci> <is the creator of> <the Mona Lisa>.
<The Mona Lisa> <is on display in> <the Louvre>.
+ <Bob> <likes> <The Mona Lisa>.
</pre>
<p>Because RDF statements consist of three elements they are called
@@ -268,17 +269,33 @@
<h2>RDF Syntax</h2>
- <p>RDF has many syntactic forms
+ <p>The RDF Data Model can be expressed in many syntactic forms.
+ We give an overview of those various syntaxes below, and illustrate
+ them using the Mona Lisa example above.</p>
- Turtle Syntax
+ <h3>N-Triples</h3>
- Namespace prefixes</p>
+ <p><a href="https://dvcs.w3.org/hg/rdf/raw-file/default/rdf-turtle/n-triples.html">N-Triples</a>
+ provides a simple line-based, plain text way for serializing RDF data. Each line represents
+ an RDF triple. Its subject, predicate and object are separated by white space. The example above
+ 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://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/#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 datasets
+ using standard text processing tools.</p>
</section>
<section id="section-vocabulary">
- <h2>RDF Vocabularies</h2>
+ <h2>RDF Data and Vocabularies</h2>
<p>