From b938bebafecbb7d3c788097db96101243e4143c4 Mon Sep 17 00:00:00 2001 From: josh Date: Tue, 1 Jul 2025 18:14:34 -0400 Subject: [PATCH] Update README.md --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 9d1f022..536aed6 100644 --- a/README.md +++ b/README.md @@ -12,10 +12,27 @@ A bare-minimal, yet industrial-strength C++ 20 library for reading, writing, and * Modern C++ (20) * Simple, well-documented API. +* Included parsing, validation, and manipulation tool for the CLI. * Static Library * GCC and MSVC support * Tested on Fedora Linux and Windows 10. +## API Overview + +```cpp + +tuple parse(string); +string deparse(value, string whitespace = ""); + +struct json::value {...}; +struct json::string {...}; +struct json::number {...}; +struct json::boolean {...}; +struct json::object {...}; +struct json::array {...}; + +``` + ## Contributing