در حال ویرایش پودمان:Aligned table
این ویرایش را میتوان خنثی کرد. لطفاً تفاوت زیر را بررسی کنید تا تأیید کنید که این چیزی است که میخواهید انجام دهید، سپس تغییرات زیر را ذخیره کنید تا خنثیسازی ویرایش را به پایان ببرید.
نسخهٔ فعلی | متن شما | ||
خط ۳۹: | خط ۳۹: | ||
colstyle[1] = 'text-align:left;' | colstyle[1] = 'text-align:left;' | ||
colstyle[2] = 'text-align:right;' | colstyle[2] = 'text-align:right;' | ||
end | end | ||
for i = 1,cols do | for i = 1,cols do | ||
خط ۱۱۲: | خط ۱۰۸: | ||
-- start a new row | -- start a new row | ||
local row = root:tag('tr') | local row = root:tag('tr') | ||
row:css('vertical-align', 'top') | |||
-- loop over the cells in each row | |||
-- loop over the cells in | |||
for i=1,cols do | for i=1,cols do | ||
local cell | local cell | ||
if isnotempty(args['row' .. tostring(j) .. 'header']) then | if isnotempty(args['row' .. tostring(j) .. 'header']) then | ||
cell = row:tag('th | cell = row:tag('th') | ||
else | else | ||
cell = row:tag('td') | cell = row:tag('td') | ||
خط ۱۳۷: | خط ۱۲۴: | ||
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']) | ||
end | end | ||
if colclass[i] ~= '' then | if colclass[i] ~= '' then | ||
خط ۱۵۱: | خط ۱۳۴: | ||
if 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']) | ||
خط ۱۶۲: | خط ۱۴۱: | ||
end | end | ||
end | end | ||
cell:wikitext | cell:wikitext(args[cols*(j - 1) + i] or '') | ||
end | end | ||
end | end |