Difference between revisions of "Module:Cslist"
From LIMSWiki
Jump to navigationJump to searchShawndouglas (talk | contribs) (Created as needed.) |
Shawndouglas (talk | contribs) m (Protected "Module:Cslist" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite))) |
Latest revision as of 16:42, 10 March 2020
p = {}
p.makelist = function(frame) local args = frame.args if not args[1] then args = frame:getParent().args if not args[1] then return end end local semi = (args.semi or ""):sub(1,1):lower() semi = (semi == "t") or (semi == "y") local out = "" for k, v in ipairs(args) do v = mw.text.trim(v) if v ~= "" then
out = out .. "
" end end if out ~= "" then if semi then return '
- ' .. out .. '
'
else
return '
- ' .. out .. '
'
end end end
return p