Fix broken links
authorMarkus Lanthaler <mark_lanthaler@gmx.net>
Thu, 26 Apr 2012 12:03:57 +0200
changeset 572 8a424c6fc8f0
parent 571 bbbed5de209b
child 573 93d29fc1767e
Fix broken links
spec/latest/json-ld-api/index.html
spec/latest/json-ld-syntax/index.html
--- a/spec/latest/json-ld-api/index.html	Thu Apr 26 11:52:36 2012 +0200
+++ b/spec/latest/json-ld-api/index.html	Thu Apr 26 12:03:57 2012 +0200
@@ -389,8 +389,7 @@
     <dt><tdef>array</tdef></dt>
     <dd>
       An array is an ordered collection of values. An array structure is represented as square brackets surrounding zero or more values (or elements). Elements are separated by commas.  Within JSON-LD, array order is not preserved by default, unless
-      specific markup is provided (see <a href="#lists">Lists</a>). This is because the basic data model of JSON-LD
-      is a <tref>linked data graph</tref>, which is inherently unordered.
+      specific markup is provided. This is because the basic data model of JSON-LD is a <tref>linked data graph</tref>, which is inherently unordered.
     </dd>
     <dt><tdef>string</tdef></dt><dd>
       A string is a sequence of zero or more Unicode characters, wrapped in double quotes, using backslash escapes. A
@@ -464,7 +463,7 @@
     <li><a href="https://github.com/json-ld/json-ld.org/tree/master/spec">Source code</a> for the
       specification can be found on Github.</li>
 
-    <li>The <a href="http://webchat.freenode.net/?channels=#json-ld">#json-ld</a>
+    <li>The <a href="http://webchat.freenode.net/?channels=json-ld">#json-ld</a>
       IRC channel is available for real-time discussion on irc.freenode.net.</li>
   </ul>
 
@@ -1844,7 +1843,7 @@
         <ol class="algorithm">
           <li>If the property <cide>@id</cide> is not an <tref>IRI</tref>, return a
             <tref>blank node</tref> identifer using <a
-            href="generate-blank-node-identifier">Generate Blank Node Identifier</a> as
+            href="#generate-blank-node-identifier">Generate Blank Node Identifier</a> as
             <em>name</em>, otherwise use the value of the @id property as
             <em>name</em>.</li>
           <li>Unless <em>subjects</em> as an entry for <em>name</em> create a new entry in
--- a/spec/latest/json-ld-syntax/index.html	Thu Apr 26 11:52:36 2012 +0200
+++ b/spec/latest/json-ld-syntax/index.html	Thu Apr 26 12:03:57 2012 +0200
@@ -473,7 +473,7 @@
 <li><a href="https://github.com/json-ld/json-ld.org/tree/master/spec">Source code</a> for the
 specification can be found on Github.</li>
 
-<li>The <a href="http://webchat.freenode.net/?channels=#json-ld">#json-ld</a>
+<li>The <a href="http://webchat.freenode.net/?channels=json-ld">#json-ld</a>
 IRC channel is available for real-time discussion on irc.freenode.net.</li>
 </ul>
 
@@ -1149,8 +1149,8 @@
 
 <p>This describes the use of this <tref>array</tref> as being ordered,
   and order is maintained through operations such as
-  <a href="expansion">Expansion</a>, <a href="compaction">Compaction</a>,
-  and <a href="framing">Framing</a>. If every use of a given multi-valued
+  <a href="#expansion">Expansion</a>, <a href="#compaction">Compaction</a>,
+  and <a href="#framing">Framing</a>. If every use of a given multi-valued
   property is a list, this may be abbreviated by setting <code>@container</code>
   to <code>@list</code> in the <tref>context</tref>:</p>
 <pre class="example" data-transform="updateExample">
@@ -1179,8 +1179,8 @@
 <p>Similarly to <code>@list</code>, there exists the <tref>keyword</tref> <code>@set</code> to
   describe unordered sets. While its use in the body of a JSON-LD document
   represents just syntactic sugar that MUST be optimized away when processing
-  the document, it is very helpful for <a href="compaction">Compaction</a>
-  and <a href="framing">Framing</a>. The value of terms associated with a
+  the document, it is very helpful for <a href="#compaction">Compaction</a>
+  and <a href="#framing">Framing</a>. The value of terms associated with a
   <code>@set</code>- or <code>@list</code>-<code>@container</code> are always
   represented in the form of an <tref>array</tref> - even if there is just a
   single value. This makes post-processing of the data easier as the data is
@@ -1948,7 +1948,7 @@
 <section>
   <h2>Named Graphs</h2>
   <p>The <code>@graph</code> <tref>keyword</tref> is used to identify a set of JSON-LD object
-    definitions that may not be directly related through a property, or where 
+    definitions that may not be directly related through a property, or where
     <tref>embedding</tref> is not appropriate. For example:</p>
 
   <pre class="example" data-transform="updateExample">
@@ -2002,13 +2002,13 @@
   </pre>
 
   <p>The <code>@graph</code> <tref>keyword</tref> takes on additional meaning when it
-    is used along with other properties, or is used within an embedded JSON-LD 
+    is used along with other properties, or is used within an embedded JSON-LD
     object. In this case, the set of <tref title="subject definition">subject definitions</tref>,
-    or <tref title="subject reference">subject references</tref> 
-    contained within a <code>@graph</code> is given a <em>name</em>, based on 
-    the label of the JSON-LD object containing a <code>@graph</code> property, 
-    either an <tref>IRI</tref>, or an <tref>unlabeled node</tref>. This allows 
-    statements to be made about an entire <tref>linked data graph</tref>, 
+    or <tref title="subject reference">subject references</tref>
+    contained within a <code>@graph</code> is given a <em>name</em>, based on
+    the label of the JSON-LD object containing a <code>@graph</code> property,
+    either an <tref>IRI</tref>, or an <tref>unlabeled node</tref>. This allows
+    statements to be made about an entire <tref>linked data graph</tref>,
     rather than just a single JSON-LD object.</p>
 
   <pre class="example" data-transform="updateExample">
@@ -2038,10 +2038,10 @@
   </pre>
 
   <p>This example says that there is a <tref>linked data graph</tref> identified by
-    <code>http://example.org/linked-data-graph</code> which is composed of the 
-    statements about Manu and Gregg and a reference to another IRI, which could 
-    make statements about Markus. Additionally, there is information about the 
-    graph itself, which indicates a time at which this information as asserted 
+    <code>http://example.org/linked-data-graph</code> which is composed of the
+    statements about Manu and Gregg and a reference to another IRI, which could
+    make statements about Markus. Additionally, there is information about the
+    graph itself, which indicates a time at which this information as asserted
     to be true.</p>
 
 </section>