Use the same arrows for comments in all examples
authorMarkus Lanthaler <mark_lanthaler@gmx.net>
Thu, 17 Oct 2013 20:27:14 +0200
changeset 2032 9c8ec577075d
parent 2031 32ce0c86c97d
child 2033 faea9505be17
Use the same arrows for comments in all examples
spec/latest/json-ld/index.html
--- a/spec/latest/json-ld/index.html	Thu Oct 17 20:20:54 2013 +0200
+++ b/spec/latest/json-ld/index.html	Thu Oct 17 20:27:14 2013 +0200
@@ -526,7 +526,7 @@
   <!--
   {
     "****http://schema.org/name****": "Manu Sporny",
-    "****http://schema.org/url****": ****{ "@id": ****"http://manu.sporny.org/" ****}****, ← The '@id' keyword means 'This value is an identifier that is an IRI'
+    "****http://schema.org/url****": ****{ "@id": ****"http://manu.sporny.org/" ****}****,  ← The '@id' keyword means 'This value is an identifier that is an IRI'
     "****http://schema.org/image****": ****{ "@id": ****"http://manu.sporny.org/images/manu.png" ****}****
   }
   -->
@@ -565,14 +565,14 @@
     {
       ****"@context":
       {
-        "name": "http://schema.org/name", **** ← This means that 'name' is shorthand for 'http://schema.org/name' ****
+        "name": "http://schema.org/name",****  ← This means that 'name' is shorthand for 'http://schema.org/name' ****
         "image": {
-          "@id": "http://schema.org/image", **** ← This means that 'image' is shorthand for 'http://schema.org/image' ****
-          "@type": "@id" **** ← This means that a string value associated with 'image' should be interpreted as an identifier that is an IRI ****
+          "@id": "http://schema.org/image",****  ← This means that 'image' is shorthand for 'http://schema.org/image' ****
+          "@type": "@id"****  ← This means that a string value associated with 'image' should be interpreted as an identifier that is an IRI ****
         },
         "homepage": {
-          "@id": "http://schema.org/url", **** ← This means that 'homepage' is shorthand for 'http://schema.org/url' ****
-          "@type": "@id" **** ← This means that a string value associated with 'homepage' should be interpreted as an identifier that is an IRI ****
+          "@id": "http://schema.org/url",****  ← This means that 'homepage' is shorthand for 'http://schema.org/url' ****
+          "@type": "@id"****  ← This means that a string value associated with 'homepage' should be interpreted as an identifier that is an IRI ****
         }
       }****
     }
@@ -1191,11 +1191,11 @@
 {
 ...
   "@id": "http://example.org/posts#TripToWestVirginia",
-  ****"@type": "http://schema.org/BlogPosting"****,   <- This is a node type
+  ****"@type": "http://schema.org/BlogPosting"****,  ← This is a node type
   "modified":
   {
     "@value": "2010-05-29T14:17:39+02:00",
-    ****"@type": "http://www.w3.org/2001/XMLSchema#dateTime"**** <- This is a value type
+    ****"@type": "http://www.w3.org/2001/XMLSchema#dateTime"****  ← This is a value type
   }
 ...
 }