Module:Bold list

From Bharatpedia, an open encyclopedia
Revision as of 17:15, 6 November 2024 by Muskit Gergous (talk | contribs) (Cleanup)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Usage

{{#invoke:Bold list|function_name}}




-- Written by User:Muskit Gergous in response to a thread at [[BP: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 }