Gave the introduction section a makeover.

This commit is contained in:
Aaron Jacobs 2014-07-01 11:56:56 +10:00
parent 4b687640cb
commit ff22ca7973

View File

@ -1,17 +1,16 @@
Introduction Introduction
------------ ------------
JSON (JavaScript Object Notation) is a lightweight data-interchange format. [JSON][json-org] is a lightweight data-interchange format. It can represent
It can represent integer, real number, string, an ordered sequence of numbers, strings, ordered sequences of values, and collections of name/value
value, and a collection of name/value pairs. pairs.
JsonCpp (http://jsoncpp.sourceforge.net/) is a simple API to manipulate [json-org]: http://json.org/
JSON value, handle serialization and unserialization to string.
It can also preserve existing comment in unserialization/serialization steps, JsonCpp is a C++ library that allows manipulating JSON values, including
making it a convenient format to store user input files. serialization and deserialization to and from strings. It can also preserve
existing comment in unserialization/serialization steps, making it a convenient
Unserialization parsing is user friendly and provides precise error reports. format to store user input files.
Using json-cpp in your project Using json-cpp in your project
------------------------------ ------------------------------