Fixed minor CSS fixes to RDF conversion algorithm.
--- a/spec/latest/index.html Thu Aug 04 14:35:06 2011 -0400
+++ b/spec/latest/index.html Thu Aug 04 14:38:57 2011 -0400
@@ -2137,7 +2137,7 @@
If the value is a regular array, generate an RDF List by linking
each element of the list using <code>rdf:first</code> and <code>rdf:next</code>, terminating the list with <code>rdf:nil</code>
using the following sequence:
- <ol>
+ <ol class="algorithm">
<li>
If the list has no element, generate a triple using the <tref>active subject</tref>, <tref>active property</tref>
and <code>rdf:nil</code>.
@@ -2148,7 +2148,7 @@
</li>
<li>
For each element other than the last element in the list:
- <ol>
+ <ol class="algorithm">
<li>Create a processor state using the active context, <em>first bnode</em> as the <tref>active subject</tref>, and <code>rdf:first</code> as the <tref>active property</tref>.</li>
<li>Unless this is the last element in the list, generate a new BNode identified as <em>rest bnode</em>, otherwise use <code>rdf:nil</code>.</li>
<li>Generate a new triple using <em>first bnode</em>, <code>rdf:rest</code> and <em>rest bnode</em>.</li>