Module:Cslist: Difference between revisions
Appearance
Content deleted Content added
MusikBot II (talk | contribs) m Protected "Module:Cslist": High-risk template or module (more info) ([Edit=Require autoconfirmed or confirmed access] (indefinite)) |
sync from sandbox |
||
Line 9: | Line 9: | ||
local semi = (args.semi or ""):sub(1,1):lower() |
local semi = (args.semi or ""):sub(1,1):lower() |
||
semi = (semi == "t") or (semi == "y") |
semi = (semi == "t") or (semi == "y") |
||
local embedded = (args.embedded or ""):sub(1,1):lower() |
|||
embedded = (embedded == "y") |
|||
local out = "" |
local out = "" |
||
for k, v in ipairs(args) do |
for k, v in ipairs(args) do |
||
Line 15: | Line 17: | ||
out = out .. "<li>" .. v .. "</li>" |
out = out .. "<li>" .. v .. "</li>" |
||
end |
end |
||
⚫ | |||
local listclass = "" |
|||
⚫ | |||
listclass = listclass .. "sslist" |
|||
⚫ | |||
listclass = listclass .. "cslist" |
|||
end |
|||
if embedded then |
|||
listclass = listclass .. " cslist-embedded" |
|||
end |
end |
||
if out ~= "" then |
if out ~= "" then |
||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
return '<ul class="cslist">' .. out .. '</ul>' |
|||
⚫ | |||
end |
end |
||
end |
end |
Revision as of 15:45, 18 September 2020
![]() | 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 embedded = (args.embedded or ""):sub(1,1):lower()
embedded = (embedded == "y")
local out = ""
for k, v in ipairs(args) do
v = mw.text.trim(v)
if v ~= "" then
out = out .. "<li>" .. v .. "</li>"
end
end
local listclass = ""
if semi then
listclass = listclass .. "sslist"
else
listclass = listclass .. "cslist"
end
if embedded then
listclass = listclass .. " cslist-embedded"
end
if out ~= "" then
return '<ul class="'.. listclass ..'">' .. out .. '</ul>'
end
end
return p