Module:Bold list: Difference between revisions
Jump to navigation
Jump to search
correction |
Richardpruen (talk | contribs) m 1 revision imported: Templates and CSS files |
||
(No difference)
|
Latest revision as of 18:58, 4 December 2022
Documentation for this module may be created at Module:Bold list/doc
Script error: Lua error: Internal error: The interpreter exited with status 127.
-- 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 }