「モジュール:Bold list」の版間の差分

提供:Wikiminati
Columns-list>Peter coxhead
(correction)
 
(1版 をインポートしました: Columns-list)
 

2023年3月19日 (日) 12:53時点における最新版

このモジュールについての説明文ページを モジュール:Bold list/doc に作成できます

-- 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 }