Module:Cslist: Difference between revisions
From Sapiens
Jump to navigationJump to search
m (1 revision imported) |
en>MusikBot II m (Changed protection settings for "Module:Cslist": High-risk template or module: 2504 transclusions (more info) ([Edit=Require extended confirmed access] (indefinite) [Move=Require extended confirmed access] (indefinite))) |
||
| Line 7: | Line 7: | ||
if not args[1] then return end | if not args[1] then return end | ||
end | end | ||
local semi = | |||
local semi = args.semi | |||
local embedded = | if semi then semi = semi:lower() end | ||
local oxford = args.oxford | |||
if oxford then oxford = oxford:lower() end | |||
local embedded = args.embedded | |||
if embedded then embedded = embedded:lower() end | |||
local out = "" | local out = "" | ||
for k, v in ipairs(args) do | for k, v in ipairs(args) do | ||
| Line 22: | Line 26: | ||
listclass = listclass .. "sslist" | listclass = listclass .. "sslist" | ||
else | else | ||
listclass = listclass .. "cslist" | if oxford then | ||
if args[3] then | |||
listclass = listclass .. "andlistoxford" | |||
else | |||
listclass = listclass .. "andlist" | |||
end | |||
else | |||
listclass = listclass .. "cslist" | |||
end | |||
end | end | ||
if embedded then | if embedded then | ||
Revision as of 13:00, 4 May 2025
Documentation for this module may be created at Module:Cslist/doc
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
if semi then semi = semi:lower() end
local oxford = args.oxford
if oxford then oxford = oxford:lower() end
local embedded = args.embedded
if embedded then embedded = embedded:lower() end
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
if oxford then
if args[3] then
listclass = listclass .. "andlistoxford"
else
listclass = listclass .. "andlist"
end
else
listclass = listclass .. "cslist"
end
end
if embedded then
listclass = listclass .. " cslist-embedded"
end
if out ~= "" then
return '<ul class="'.. listclass ..'">' .. out .. '</ul>'
end
end
return p