模块:Object:修订历史

来自「荏苒之境」

差异选择:选中要对比的修订的单选按钮,然后按Enter键或下面的按钮。
说明:(当前)=与最后修订的差异,(之前)=与上个修订的差异,=小编辑。

2025年8月7日 (星期四)

2025年7月31日 (星期四)

  • 当前之前 08:382025年7月31日 (四) 08:38 Sicusa 留言 贡献 6,775字节 +6,775 创建页面,内容为“local concat = table.concat local object = {} local control_escapes = { ["\a"] = "\\a", ["\b"] = "\\b", ["\f"] = "\\f", ["\v"] = "\\v", ["\n"] = "\\n", ["\r"] = "\\r" } local function unescape_string(str, unescape_table) return str :gsub("\\", "\\\\") :gsub("\"", "\\\"") :gsub(".", unescape_table or control_escapes) end object.unescape_string = unescape_string local function format_string(str) return…”