JSON
json.escape
Real JSON string escaping rules を使って string を escape し、surrounding quotes なしの escaped content を返します。
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Real JSON string escaping rules を使って string を escape し、surrounding quotes なしの escaped content を返します。
json.escape(text: string): string
local source = "line 1" .. string.char(10) .. [[line "2"]]
local escaped = json.escape(source)
print(escaped)