Editing Module:Aligned table

From MINR.ORG WIKI

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.
Latest revision Your text
Line 43: Line 43:
 
colclass[ i ] = colclass[ i ] or ''
 
colclass[ i ] = colclass[ i ] or ''
 
colstyle[ i ] = colstyle[ i ] or ''
 
colstyle[ i ] = colstyle[ i ] or ''
if isnotempty(args['colstyle']) then
 
colstyle[ i ] = args['colstyle'] .. ';' .. colstyle[ i ]
 
end
 
 
if isnotempty(args['colalign' .. tostring(i)]) then
 
if isnotempty(args['colalign' .. tostring(i)]) then
 
colstyle[ i ] = 'text-align:' .. args['colalign' .. tostring(i)] .. ';' .. colstyle[ i ]
 
colstyle[ i ] = 'text-align:' .. args['colalign' .. tostring(i)] .. ';' .. colstyle[ i ]
Line 93: Line 90:
  
 
-- build the table content
 
-- build the table content
if isnotempty(args['title']) then
 
local caption = root:tag('caption')
 
caption:cssText(args['titlestyle'])
 
caption:wikitext(args['title'])
 
end
 
if isnotempty(args['above']) then
 
local row = root:tag('tr')
 
local cell = row:tag('th')
 
cell:attr('colspan', cols)
 
cell:cssText(args['abovestyle'])
 
cell:wikitext(args['above'])
 
end
 
 
for j=1,rows do
 
for j=1,rows do
 
-- start a new row
 
-- start a new row
 
local row = root:tag('tr')
 
local row = root:tag('tr')
if isnotempty(args['rowstyle']) then
+
row:css('vertical-align', 'top')
row:cssText(args['rowstyle'])
+
-- loop over the cells in each row
else
 
row:css('vertical-align', 'top')
 
end
 
-- loop over the cells in the row
 
 
for i=1,cols do
 
for i=1,cols do
local cell
+
local cell = row:tag('td')
if isnotempty(args['row' .. tostring(j) .. 'header']) then
 
cell = row:tag('th'):attr('scope','col')
 
elseif isnotempty(args['col' .. tostring(i) .. 'header']) then
 
cell = row:tag('th'):attr('scope','row')
 
else
 
cell = row:tag('td')
 
end
 
 
if args['class' .. tostring(j) .. '.' .. tostring(i)] then
 
if args['class' .. tostring(j) .. '.' .. tostring(i)] then
 
cell:addClass(args['class' .. tostring(j) .. '.' .. tostring(i)])
 
cell:addClass(args['class' .. tostring(j) .. '.' .. tostring(i)])
else
+
elseif args['rowclass' .. tostring(j)] then
if args['rowclass' .. tostring(j)] then
+
cell:addClass(args['rowclass' .. tostring(j)])
cell:addClass(args['rowclass' .. tostring(j)])
+
elseif args['row' .. tostring(j) .. 'class'] then
elseif args['row' .. tostring(j) .. 'class'] then
+
cell:addClass(args['row' .. tostring(j) .. 'class'])
cell:addClass(args['row' .. tostring(j) .. 'class'])
+
elseif colclass[i] ~= '' then
elseif args['rowevenclass'] and math.fmod(j,2) == 0 then
+
cell:addClass(colclass[i])
cell:addClass(args['rowevenclass'])
 
elseif args['rowoddclass'] and math.fmod(j,2) == 1 then
 
cell:addClass(args['rowoddclass'])
 
end
 
if colclass[i] ~= '' then
 
cell:addClass(colclass[i])
 
end
 
 
end
 
end
 
if args['style' .. tostring(j) .. '.' .. tostring(i)] then
 
if args['style' .. tostring(j) .. '.' .. tostring(i)] then
 
cell:cssText(args['style' .. tostring(j) .. '.' .. tostring(i)])
 
cell:cssText(args['style' .. tostring(j) .. '.' .. tostring(i)])
else
+
elseif args['rowstyle' .. tostring(j)] then
if args['rowstyle' .. tostring(j)] then
+
cell:cssText(args['rowstyle' .. tostring(j)])
cell:cssText(args['rowstyle' .. tostring(j)])
+
elseif args['row' .. tostring(j) .. 'style'] then
elseif args['row' .. tostring(j) .. 'style'] then
+
cell:cssText(args['row' .. tostring(j) .. 'style'])
cell:cssText(args['row' .. tostring(j) .. 'style'])
+
elseif colstyle[i] ~= '' then
end
+
cell:cssText(colstyle[i])
if isnotempty(colstyle[i]) then
 
cell:cssText(colstyle[i])
 
end
 
 
end
 
end
cell:wikitext(mw.ustring.gsub(args[cols*(j - 1) + i] or '', '^(.-)%s*$', '%1') or '')
+
cell:wikitext(args[cols*(j - 1) + i] or '')
 
end
 
end
 
end
 
end

Please note that all contributions to MINR.ORG WIKI may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see MINR.ORG WIKI:Copyrights for details). Do not submit copyrighted work without permission!

Cancel Editing help (opens in new window)