fix json.indent docs (#429)

This commit is contained in:
liuxiong 2023-08-22 12:15:00 +08:00 committed by GitHub
parent 48308d45d9
commit 0177bdb4e1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,7 +11,7 @@ json := import("json")
- `encode(o object) => bytes`: Returns the JSON string (bytes) of the object.
Unlike Go's JSON package, this function does not HTML-escape texts, but, one
can use `html_escape` function if needed.
- `indent(b string/bytes) => bytes`: Returns an indented form of input JSON
- `indent(b string/bytes, prefix string, indent string) => bytes`: Returns an indented form of input JSON
bytes string.
- `html_escape(b string/bytes) => bytes`: Return an HTML-safe form of input
JSON bytes string.
@ -22,7 +22,7 @@ json := import("json")
json := import("json")
encoded := json.encode({a: 1, b: [2, 3, 4]}) // JSON-encoded bytes string
indentded := json.indent(encoded) // indented form
indentded := json.indent(encoded, "", " ") // indented form
html_safe := json.html_escape(encoded) // HTML escaped form
decoded := json.decode(encoded) // {a: 1, b: [2, 3, 4]}