-The Dream Cancel Wiki has successfully upgraded it's wiki software and editing has returned. Tables for data have returned.
Module:MultiRow
Documentation for this module may be created at Module:MultiRow/doc
local p = {}
function p.makeMultiRow(frame)
local count = 0
local rowName = frame.args['rowName']
local fullString = ""
local firstEntry = true
for index, value in ipairs(frame.args) do
if value ~= nil and value:match("%S") ~= nil then
if firstEntry then
fullString = "\n\| " .. value
firstEntry = false
else
fullString = fullString .. "\n\|-\n\| " .. value
end
count = count + 1
end
end
if count > 0 then
return "! rowspan=\"" .. count .. "\" \| " .. rowName .. fullString
else
return nil
end
end
return p