Content deleted Content added
BrandonXLF (talk | contribs) No edit summary |
BrandonXLF (talk | contribs) No edit summary |
||
Line 39:
local function displayFloor(stationFloor, num)
local out = '<div>'
out = out .. '<div>'
Line 49 ⟶ 47:
end
return out .. '
end
Line 105 ⟶ 103:
function p.main(frame)
local sortedArgs = processArgs(frame.args)
local out = '<div style="display: grid; grid-template-columns: max-content 1fr;">'
for i = 1, sortedArgs.max do
Line 111 ⟶ 109:
end
return out .. '</div>'
end
|