--- a/docs/Writerside/topics/json.h.md Sat Dec 06 16:22:19 2025 +0100 +++ b/docs/Writerside/topics/json.h.md Sat Dec 06 16:30:11 2025 +0100 @@ -321,7 +321,6 @@ typedef struct cx_json_writer_s { bool pretty; - bool sort_members; uint8_t frac_max_digits; bool indent_space; uint8_t indent; @@ -346,7 +345,6 @@ | Setting | Compact Default | Pretty Default | Description | |-------------------|-----------------|----------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------| | `pretty` | `false` | `true` | If true, the JSON will be formatted with line breaks and tabs or spaces. If false, output is as compact as possible without extra characters. | -| `sort_members` | `true` | `true` | If false members are written in the order in which they were added. If true, they are sorted lexicographically. | | `frac_max_digits` | 6 | 6 | The maximum number of fractional digits in a number value. | | `indent_space` | ignored | depends on `use_spaces` argument | If true, use spaces for indentation, otherwise use tabs. | | `indent` | ignored | 4 | If `indent_space` is `true`, this is the number of spaces per tab. Ignored otherwise. |