Module:Cslist
Appearance
![]() | This Lua module is used on approximately 2,500 pages and changes may be widely noticed. Test changes in the module's /sandbox or /testcases subpages, or in your own module sandbox. Consider discussing changes on the talk page before implementing them. |
Module to implement Template:Cslist, which creates a horizontal list similar to Template:Hlist but using comma separators instead of mid-dots. See template documentation for usage.
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)
out = out .. "<li>" .. v .. "</li>"
end
if out ~= "" then
if semi then
return '<ul class="sslist">' .. out .. '</ul>'
else
return '<ul class="cslist">' .. out .. '</ul>'
end
end
end
return p