Skip to content

Commit f1b86ed

Browse files
committed
Convert README to markdown style.
1 parent 1dfe464 commit f1b86ed

File tree

2 files changed

+30
-7
lines changed

2 files changed

+30
-7
lines changed

README

-7
This file was deleted.

README.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
2+
# UniValue
3+
4+
## Summary
5+
6+
A universal value class, with JSON encoding and decoding.
7+
8+
UniValue is an abstract data type that may be a null, boolean, string,
9+
number, array container, or a key/value dictionary container, nested to
10+
an arbitrary depth.
11+
12+
This class is aligned with the JSON standard, [RFC
13+
7159](https://tools.ietf.org/html/rfc7159.html).
14+
15+
## Installation
16+
17+
This project is a standard GNU
18+
[autotools](https://www.gnu.org/software/automake/manual/html_node/Autotools-Introduction.html)
19+
project. Build and install instructions are available in the `INSTALL`
20+
file following the `autogen.sh` step.
21+
22+
```$ ./autogen.sh
23+
$ ./configure
24+
$ make
25+
26+
## Design
27+
28+
UniValue provides a single dynamic RAII C++ object class,
29+
and minimizes template use (contra json_spirit).
30+

0 commit comments

Comments
 (0)