Module:Bold list: Difference between revisions
From YATA Wiki
Jump to navigationJump to search
en>Peter coxhead (correction) |
AlexChillOut (talk | contribs) m (1 revision imported: infobox stuff) |
(No difference)
|
Latest revision as of 11:27, 18 April 2024
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 }