Change Property Generator generated statements to tabular form, which makes it more apparent that they only vary by property.
authorGregg Kellogg <gregg@kellogg-assoc.com>
Sat, 08 Dec 2012 14:32:46 -0800
changeset 1011 e6a52dc0ea84
parent 1010 4f19d65d2f3a
child 1012 cb2f80f0beb6
Change Property Generator generated statements to tabular form, which makes it more apparent that they only vary by property.
spec/latest/json-ld-syntax/index.html
--- a/spec/latest/json-ld-syntax/index.html	Sat Dec 08 23:02:11 2012 +0100
+++ b/spec/latest/json-ld-syntax/index.html	Sat Dec 08 14:32:46 2012 -0800
@@ -1736,22 +1736,32 @@
 </pre>
 
 <p>While the term above is only used once outside of the <code>@context</code>,
-the document above is equivalent to the following set of statements:</p>
-
-<pre class="example" data-transform="updateExample"
-     title="Set of statements generated by the previous example">
-<!--
-<http://example.com/book>
-  <http://purl.org/dc/terms/title>
-    "The Count of Monte Cristo" .
-<http://example.com/book>
-  <http://schema.org/name>
-    "The Count of Monte Cristo" .
-<http://example.com/book>
-  <http://www.w3.org/2000/01/rdf-schema#label>
-    "The Count of Monte Cristo" .
--->
-</pre>
+the document above is equivalent to the following:</p>
+
+<table class="example">
+<thead>
+  <th>Subject</th>
+  <th>Property</th>
+  <th>Object</th>
+</thead>
+<tbody>
+<tr>
+  <td>http://example.com/book</td>
+  <td>http://purl.org/dc/terms/title</td>
+  <td>The Count of Monte Cristo</td>
+</tr>
+<tr>
+  <td>http://example.com/book</td>
+  <td>http://schema.org/name</td>
+  <td>The Count of Monte Cristo</td>
+</tr>
+<tr>
+  <td>http://example.com/book</td>
+  <td>http://www.w3.org/2000/01/rdf-schema#label</td>
+  <td>The Count of Monte Cristo</td>
+</tr>
+</tbody>
+</table>
 
 </section>