欢迎来到奇葩栖息地!欢迎加入Discord服务器:XfrfHCzfbW。请先至特殊:参数设置验证邮箱后再进行编辑。在特殊:参数设置挑选自己想要使用的小工具!不会编辑?请至这里学习Wikitext语法。
模块:Zhchar
来自奇葩栖息地
local p = {}
p.zhchar = function(frame)
local args = frame
if frame == mw.getCurrentFrame() then
args = frame:getParent().args
end
local zhchar = {}
for _, key in ipairs(args) do
key = mw.text.trim(key)
if key ~= '+' and key:find('%+') then
local combozhchar = {}
for comboKey in mw.text.gsplit(key, '%s*%+%s*') do
table.insert(combozhchar, p.key(comboKey))
end
table.insert(zhchar, table.concat(combozhchar, ' + '))
else
table.insert(zhchar, p.key(key))
end
end
return mw.text.unstrip(table.concat(zhchar))
end
p.key = function(key)
if key == '' then
return ''
end
local symbols = mw.loadData('Module:Zhchar/Symbols')
return mw.text.unstrip(symbols[key] or key)
end
return p