SuperCombo is for the FGC, by GBL. We don't run ads or sell user data. If you enjoy the site, consider supporting our work.
![]() |
Want to be an editor? Join the SuperCombo Discord and read #server-and-wiki-info for registration. |
Module:MultiRow
From SuperCombo Wiki
Views
Actions
Namespaces
Variants
Tools
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