diff --git a/README.md b/README.md index f398dc5..c14d1d6 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # GoodForm Form validation library. Includes MsgPack and JSON serializer/deserializer. -#MsgPack Usage +## MsgPack Usage ```c++ std::stringstream ss; goodform::variant var, var2; @@ -30,8 +30,9 @@ if (form.is_good()) std::cout << "{ \"compact\": " << std::boolalpha << mpack.compact << ", \"schema\": " << mpack.schema << " }" << std::endl; } ``` +- - - - -#JSON Usage +## JSON Usage ```c++ goodform::variant var; std::stringstream ss; @@ -83,4 +84,6 @@ else { // Handle error. } -``` \ No newline at end of file +``` +## Limitations +- complex keys are out of scope with this library (key can be only strings in msgpack)