]> granicus.if.org Git - json-c/commitdiff
Improving README
authorNicola Spanti (RyDroid) <dev@nicola-spanti.info>
Sun, 7 Aug 2016 16:29:11 +0000 (18:29 +0200)
committerNicola Spanti (RyDroid) <dev@nicola-spanti.info>
Mon, 8 Aug 2016 13:25:31 +0000 (15:25 +0200)
NEWS
README
README.html
README.md

diff --git a/NEWS b/NEWS
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..5798fb41b964a24e0e96dc7ea69b8d808af1b09b 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -0,0 +1 @@
+See the git repo.
diff --git a/README b/README
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..e257745ca9ec9468ac73b8ed5d88a3781378b925 100644 (file)
--- a/README
+++ b/README
@@ -0,0 +1 @@
+See README.md or README.html
index a30c830584c3eb87693579d9522e88402822a519..0b951fd0972f8a9b2e8b414d7147f7477715122d 100644 (file)
@@ -11,7 +11,7 @@
                <p>JSON-C implements a reference counting object model that allows you to easily 
                construct JSON objects in C, output them as JSON formatted strings and parse 
                JSON formatted strings back into the C representation of JSON objects.
-               It aims to conform to <a href="https://tools.ietf.org/html/rfc7159">RFC 7159</a>
+               It aims to conform to <a href="https://tools.ietf.org/html/rfc7159">RFC 7159</a>.
                </p>
 
                <h3>Building</h3>
@@ -30,7 +30,7 @@
                 <pi>Send email to <strong><code>json-c <i>&lt;at&gt;</i> googlegroups <i>&lt;dot&gt;</i> com</code></strong></p>
 
                <h3><a href="COPYING">License</a></h3>
-               <p>This program is free software; you can redistribute it and/or modify it under the terms of the MIT License..</p>
+               <p>This program is free software; you can redistribute it and/or modify it under the terms of the MIT License.</p>
                <hr/>
        </body>
 </html>
index 76b2140fa2cd363dbbd94ad4cface876738d6567..65b886e4d4728336ccb25d9eedfe7d315b38d026 100644 (file)
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@ JSON-C - A JSON implementation in C
 JSON-C implements a reference counting object model that allows you to easily 
 construct JSON objects in C, output them as JSON formatted strings and parse 
 JSON formatted strings back into the C representation of JSON objects.
-It aims to conform to <a href="https://tools.ietf.org/html/rfc7159">RFC 7159</a>
+It aims to conform to [RFC 7159](https://tools.ietf.org/html/rfc7159).
 
 Building on Unix with `git`, `gcc` and `autotools`
 --------------------------------------------------
@@ -28,7 +28,7 @@ Make sure you have a complete `libtool` install, including `libtoolize`.
 
 `json-c` GitHub repo: https://github.com/json-c/json-c
 
-```bash
+```sh
 $ git clone https://github.com/json-c/json-c.git
 $ cd json-c
 $ sh autogen.sh
@@ -36,7 +36,7 @@ $ sh autogen.sh
 
 followed by
 
-```bash
+```sh
 $ ./configure
 $ make
 $ make install
@@ -44,7 +44,7 @@ $ make install
 
 To build and run the test programs:
 
-```bash
+```sh
 $ make check
 ```