Skip to content

Commit f2e7dda

Browse files
author
Nicola Spanti (RyDroid)
committed
Improving README
1 parent 9688f34 commit f2e7dda

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

NEWS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
See the git repo.

README

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
See README.md or README.html

README.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ <h3>Overview</h3>
1111
<p>JSON-C implements a reference counting object model that allows you to easily
1212
construct JSON objects in C, output them as JSON formatted strings and parse
1313
JSON formatted strings back into the C representation of JSON objects.
14-
It aims to conform to <a href="https://tools.ietf.org/html/rfc7159">RFC 7159</a>
14+
It aims to conform to <a href="https://tools.ietf.org/html/rfc7159">RFC 7159</a>.
1515
</p>
1616

1717
<h3>Building</h3>
@@ -30,7 +30,7 @@ <h3><a href="http://groups.google.com/group/json-c">Mailing List</a></h3>
3030
<pi>Send email to <strong><code>json-c <i>&lt;at&gt;</i> googlegroups <i>&lt;dot&gt;</i> com</code></strong></p>
3131

3232
<h3><a href="COPYING">License</a></h3>
33-
<p>This program is free software; you can redistribute it and/or modify it under the terms of the MIT License..</p>
33+
<p>This program is free software; you can redistribute it and/or modify it under the terms of the MIT License.</p>
3434
<hr/>
3535
</body>
3636
</html>

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ JSON-C - A JSON implementation in C
77
JSON-C implements a reference counting object model that allows you to easily
88
construct JSON objects in C, output them as JSON formatted strings and parse
99
JSON formatted strings back into the C representation of JSON objects.
10-
It aims to conform to <a href="https://tools.ietf.org/html/rfc7159">RFC 7159</a>
10+
It aims to conform to [RFC 7159](https://tools.ietf.org/html/rfc7159).
1111

1212
Building on Unix with `git`, `gcc` and `autotools`
1313
--------------------------------------------------
@@ -28,23 +28,23 @@ Make sure you have a complete `libtool` install, including `libtoolize`.
2828

2929
`json-c` GitHub repo: https://github.com/json-c/json-c
3030

31-
```bash
31+
```sh
3232
$ git clone https://github.com/json-c/json-c.git
3333
$ cd json-c
3434
$ sh autogen.sh
3535
```
3636

3737
followed by
3838

39-
```bash
39+
```sh
4040
$ ./configure
4141
$ make
4242
$ make install
4343
```
4444

4545
To build and run the test programs:
4646

47-
```bash
47+
```sh
4848
$ make check
4949
```
5050

0 commit comments

Comments
 (0)