Module:重定向至此
此模块的文档可以在Module:重定向至此/doc创建
local xqy = {}
function xqy.main(frame)
local p = nil
local result = nil
for _, v in ipairs( frame:getParent().args ) do
if result == nil then
result = "「'''" .. v .. "'''」重定向至此"
elseif p == nil then
p = v
else
p = p == '' and '。关于其他用法,请见'
or p == '和' and p
or '。关于' .. p .. ',请见'
result = result .. p .. '「[[' .. v .. ']]」'
p = nil
end
end
if p then
result = result .. '。关于其他用法,请见「[[' .. p .. ']]」'
end
return result .. '。'
end
return xqy