跳转到内容

Module:Wikitext Parsing:修订历史

2025年4月4日 (星期五)

2023年10月8日 (星期日)

  • 当前先前 16:022023年10月8日 (日) 16:02 蕭漫 留言 贡献 18,009字节 +18,009 建立内容为“require("strict") --Helper functions local function startswith(text, subtext) return string.sub(text, 1, #subtext) == subtext end local function endswith(text, subtext) return string.sub(text, -#subtext, -1) == subtext end local function allcases(s) return s:gsub("%a", function(c) return "["..c:upper()..c:lower().."]" end) end local trimcache = {} local whitespace = {[" "]=1, ["\n"]=1, ["\t"]=1, ["\r"]=1} local function cheaptrim(str) -…”的新页面