更改

跳到导航 跳到搜索
添加1,201字节 、 2020年4月8日 (三) 11:19
创建页面,内容为“local mArguments --initialize lazily local mHatlist = require('Module:Hatnote list') local mHatnote = require('Module:Hatnote') local yesNo = require('Module:Yesno')…”
local mArguments --initialize lazily
local mHatlist = require('Module:Hatnote list')
local mHatnote = require('Module:Hatnote')
local yesNo = require('Module:Yesno')
local p = {}

--Implements {{For}} from the frame
--uses capitalized "For" to avoid collision with Lua reserved word "for"
function p.For (frame)
mArguments = require('Module:Arguments')
return p._For(mArguments.getArgs(frame))
end

--Implements {{For}} but takes a manual arguments table
function p._For (args)
local use = args[1]
if (not use) then
return mHatnote.makeWikitextError(
'context参数缺失。请使用{{other uses}}作为「其他情况」的顶注。',
'Template:For#错误',
args.category
)
end
local pages = {}
function two (a, b) return a, b, 1 end --lets us run ipairs from 2
for k, v in two(ipairs(args)) do table.insert(pages, v) end
local image = '[[File:Disambig_gray.svg|25px|link=Wikipedia:消歧义]]'
return mHatnote._hatnote(
image .. '  ' .. mHatlist.forSeeTableToString({{use = use, pages = pages}}),
{selfref = args.selfref}
) .. (
(use == 'other uses') and yesNo(args.category) and
'[[Category:使用不寻常参数的顶注模板]]' or ''
)
end

return p

导航菜单