跳转到内容

模組:Bold list

维基百科,自由的百科全书
文档图示 模块文档[创建]
-- Written by User:Ahecht in response to a thread at [[WP:VPI]]
return { main = function(frame)
	args = {}
	for i, v in ipairs(frame:getParent().args) do table.insert(args, v)	end
	conj = "'''" .. (#args > 2 and "," or "") .. (frame.args.conj or "or") .. " '''"
	return "'''"..mw.text.listToText(args, "''','''", conj).."'''"
end }