Difference between revisions of "Module:Bold list"

From CWS Planet
Jump to navigation Jump to search
en>Peter coxhead
(correction)
 
m (1 revision imported)
 

Latest revision as of 15:29, 14 July 2022

Documentation for this module may be created at Module: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 }