Valid HTML
authorGavin Carothers <gavin@carothers.name>
Wed, 20 Jun 2012 11:42:00 -0700
changeset 464 d66b9d11eda0
parent 463 e4be7b9e9ff5
child 465 94e257050ee0
Valid HTML
rdf-turtle/index.html
--- a/rdf-turtle/index.html	Wed Jun 20 11:05:23 2012 -0700
+++ b/rdf-turtle/index.html	Wed Jun 20 11:42:00 2012 -0700
@@ -139,11 +139,6 @@
 	</section>
 
     <section id='sotd'>
-      <p>
-      	<strong>The following are the non-editorial changes since last publication:</strong>
-      	<ul>
-      	</ul>
-      </p>
     </section>
 	
 	<section id="sec-intro" class="informative">
@@ -171,7 +166,6 @@
     rel:enemyOf <#green-goblin> ;
     a foaf:Person ;
     foaf:name "Spiderman", "Spïdermann"@de .</script></pre>
-<img src="spiderman.png"/>
 			<p>
 			  This example introduces many of features of the Turtle language:
 <a href="#relative-iris">@base and Relative IRIs</a>,
@@ -264,13 +258,12 @@
 				  Subsequent <code>@prefix</code> directives may re-map the same prefix label. </p>
 
 				  <p>
-				  	To write <code>http://www.perceive.net/schemas/relationship/enemyOf</code> using a prefixed name: 
+				  	To write <code>http://www.perceive.net/schemas/relationship/enemyOf</code> using a prefixed name: </p>
 				  	<ol>
 				  		<li>Define a prefix label for the vocabulary IRI <code>http://www.perceive.net/schemas/relationship/</code> as <code>rel</code>
 			  			<li>Then write <code>rel:enemyOf</code> which is equalivate to writing <code>&lt;http://www.perceive.net/schemas/relationship/enemyOf></code></li>
 			  		</ol>
 
-				  </p>
 				  <pre class="example"><script type="text/turtle">@prefix rel: <http://www.perceive.net/schemas/relationship/> .
 
 <http://example.org/#green-goblin> rel:enemyOf <http://example.org/#spiderman> .
@@ -459,7 +452,7 @@
 _:bob foaf:knows _:alice .
 </script></pre>
 
-				<section id="abbrev">
+				<section id="unlabeled-bnodes">
 				  <h3>Nesting Unlabeled Blank Nodes in Turtle</h3>
 				  <p>
 				    In Turtle, fresh RDF blank nodes are also allocated when matching the production <a href="#grammar-production-blankNodePropertyList">blankNodePropertyList</a> and the terminal <a href="#grammar-production-ANON">ANON</a>.
@@ -504,7 +497,7 @@
 _:b <http://xmlns.com/foaf/0.1/mbox> <bob@example.com> .
 				</script></pre>
 			        </div>
-				<div style="clear:both;"/>
+				<div style="clear:both;"></div>
 
 				</section>
 			</section>
@@ -533,8 +526,7 @@
 				</script></pre>
 
 			</section>
-		</section>
-		      <section  id="sec-diff-sparql" class="informative">
+      <section  id="sec-diff-sparql" class="informative">
       <h3>Turtle compared to SPARQL</h3>
 
       <p>The <a href="http://www.w3.org/TR/sparql11-query/">SPARQL Query Language for RDF</a> (<abbr title="SPARQL Protocol And RDF Query Language">SPARQL</abbr>) [[RDF-SPARQL-QUERY]] uses a Turtle style syntax for its <a href="http://www.w3.org/TR/sparql11-query/#rTriplesBlock">TriplesBlock production</a>.
@@ -941,8 +933,8 @@
 
           <p>RDF collections can be nested and can involve other syntactic forms:</p>
 
-          <pre class="example untested">@prefix : <http://example.org/stuff/1.0/> .
-(1 [:p :q] ( 2 ) ) .</pre>
+          <pre class="example untested"><script type="text/turtle">@prefix : <http://example.org/stuff/1.0/> .
+(1 [:p :q] ( 2 ) ) .</script></pre>
 
           <p>is syntactic sugar for:</p><pre class="example untested"><script type="text/turtle">@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
     _:b0  rdf:first  1 ;