Difference between revisions of "Module:Cslist/sandbox"
Jump to navigation
Jump to search
blackwiki>Izno (add support for embedded that allows us to use cslist in the context of another list without line breaking) |
blackwiki>Izno (and space) |
||
| Line 25: | Line 25: | ||
end | end | ||
if embedded then | if embedded then | ||
| − | listclass = listclass .. "cslist-embedded" | + | listclass = listclass .." cslist-embedded" |
end | end | ||
if out ~= "" then | if out ~= "" then | ||
Revision as of 15:21, 18 September 2020
Documentation for this module may be created at Module:Cslist/sandbox/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 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="'.. class ..'">' .. out .. '</ul>'
end
end
return p