Module:Aligned table: Difference between revisions
no edit summary
(←Created page with '-- This module implements {{aligned table}} local p = {} function p.table(frame) local args = (frame.args[3] ~= nil) and frame.args or frame:getParent().args...') |
No edit summary |
||
Line 21: | Line 21: | ||
if type( k ) == 'number' then | if type( k ) == 'number' then | ||
i = math.fmod(k-1,cols) + 1 | i = math.fmod(k-1,cols) + 1 | ||
entries[ k ] = '<td style="align:' .. align[i] .. '">' .. v .. '</td>' | entries[ k ] = '<td style="text-align:' .. align[i] .. '">' .. v .. '</td>' | ||
if i == 1 then | if i == 1 then | ||
entries[ k ] = '<tr style="vertical-align:top">' .. entries[ k ] | entries[ k ] = '<tr style="vertical-align:top">' .. entries[ k ] |