fix json.indent docs (#429)
This commit is contained in:
parent
48308d45d9
commit
0177bdb4e1
1 changed files with 2 additions and 2 deletions
|
@ -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]}
|
||||
|
|
Loading…
Reference in a new issue