Change Property Generator generated statements to tabular form, which makes it more apparent that they only vary by property.
--- 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>