Files
kumomta/docs/reference/kumo/json_parse.md
T
Wez Furlong f8c3429738 serde: move json/toml to new kumo.serde module. Added YAML.
This helps to avoid bloating kumo-server-common, and makes it
easier to group related functions together in the docs.

The original names are still usable; we'll remove them in a
future release.
2024-06-26 11:08:15 -07:00

19 lines
720 B
Markdown

# `kumo.json_parse(STRING)`
!!! warning
This function has moved to the [kumo.serde](../kumo.serde/index.md) module and
will be removed in a future release.
{{since('dev', inline=True)}}
Parses STRING as JSON, returning a lua representation of the parsed JSON.
This json parsing implementation will accept C style block comments, C++ style
single line comments and shell style single line comments. Comments will be
treated as though they were spaces prior to being parsed by the underlying json
parser.
This is logically the opposite of [kumo.json_encode](json_encode.md).
See also [kumo.json_load](json_load.md), [kumo.json_encode](json_encode.md)
and [kumo.json_encode_pretty](json_encode_pretty.md)