Content deleted Content added
Dabao qian (talk | contribs) No edit summary |
Dabao qian (talk | contribs) No edit summary |
||
Line 744:
-- HTML table for list1
local coltable = mw.html.create( 'table' ):
local row, col
Line 761:
row = coltable:tag('tr')
for k, n in ipairs(colheadernums) do
col = row:tag('td'):
col:cssText(concatstyles({
(k > 1) and 'border-left:2px solid #fdfdfd' or '',
Line 787:
end
end
col = row:tag('td'):
col:cssText(concatstyles({
(k > 1) and 'border-left:2px solid #fdfdfd' or '',
Line 807:
row = coltable:tag('tr')
for k, n in ipairs(colfooternums) do
col = row:tag('td'):
col:cssText(concatstyles({
(k > 1) and 'border-left:2px solid #fdfdfd' or '',
|