You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+26-4Lines changed: 26 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,16 +2,38 @@
2
2
3
3
A lightweight C utility that generates formatted console tables and tree views from JSON data structures. Built on top of the cJSON library, this tool provides clean and organized visualization of JSON data directly in the terminal.
4
4
5
-
## Features
5
+
## Example
6
+
7
+
Input JSON (json_example.json):
8
+
```json
9
+
{
10
+
"configurations": [
11
+
{
12
+
"name": "Win32",
13
+
"includePath": [
14
+
"${workspaceFolder}/**"
15
+
],
16
+
"defines": [
17
+
"_DEBUG",
18
+
"UNICODE",
19
+
"_UNICODE"
20
+
],
21
+
"compilerPath": "C:\\MinGW-w64\\bin\\gcc.exe",
22
+
"cStandard": "c17",
23
+
"cppStandard": "gnu++14",
24
+
"intelliSenseMode": "windows-gcc-x64"
25
+
}
26
+
],
27
+
"version": 4
28
+
}
29
+
6
30
7
31
- **Two Display Modes**:
8
32
- Table View (`json_print_table.c`): Displays JSON arrays as formatted tables
0 commit comments