From 0177bdb4e1410150b54c7094923f5d53d1aaa840 Mon Sep 17 00:00:00 2001 From: liuxiong Date: Tue, 22 Aug 2023 12:15:00 +0800 Subject: [PATCH] fix json.indent docs (#429) --- docs/stdlib-json.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/stdlib-json.md b/docs/stdlib-json.md index 42d2c55..d127993 100644 --- a/docs/stdlib-json.md +++ b/docs/stdlib-json.md @@ -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]}