Fixed RST documentation in README.rst file.
authorManu Sporny <msporny@digitalbazaar.com>
Sun, 31 Jul 2011 16:36:38 -0400
changeset 85 feea5b4daa53
parent 84 33dbb254094b
child 86 41c68b471e23
Fixed RST documentation in README.rst file.
README.rst
--- a/README.rst	Sun Jul 31 15:27:17 2011 -0400
+++ b/README.rst	Sun Jul 31 16:36:38 2011 -0400
@@ -1,7 +1,7 @@
 Introduction
 ------------
 
-JSON-LD (JavaScript Object Notation for Linked Data) is a lightweight Linked
+JSON-LD (JavaScript Object Notation for Linking Data) is a lightweight Linked
 Data format. It is easy for humans to read and write. It is easy for machines
 to parse and generate. It is based on the already successful JSON format and
 provides a way to help JSON data interoperate at Web-scale. If you are already
@@ -14,21 +14,29 @@
 A Simple Example
 ----------------
 
-A simple example of a JSON object with added semantics::
+A simple example of a JSON object with added semantics:
 
-{ 
-  "@context": "http://purl.org/jsonld/Person"
-  "@subject": "http://dbpedia.org/resource/John_Lennon",
-  "name": "John Lennon",
-  "birthday": "10-09",
-  "member": "http://dbpedia.org/resource/The_Beatles"
-}
+::
+ { 
+   "@context": "http://purl.org/jsonld/Person",
+   "@subject": "http://dbpedia.org/resource/John_Lennon",
+   "name": "John Lennon",
+   "birthday": "10-09",
+   "member": "http://dbpedia.org/resource/The_Beatles"
+ }
 
 The example above describes a person whose name is John Lennon. The difference
 between regular JSON and JSON-LD is that the JSON-LD object above uniquely
 identifies itself on the Web and can be used, without introducing ambiguity,
 across every Web site, Web services and databases in operation today.
 
+The Playground
+--------------
+
+If you would like to play around with JSON-LD markup, you may do so here:
+
+http://json-ld.org/playground/
+
 The Specification
 -----------------