মডিউল:Aligned table-এর উৎস দেখুন
আপনার এই পাতাটি সম্পাদনা করার অনুমতি নেই, যার কারণটি হল:
আপনি এই পাতাটি দেখতে এবং এর উৎসের অনুলিপি করতে পারেন।
-- This module implements {{aligned table}}
local p = {}
local function isnotempty(s)
return s and s:match( '^%s*(.-)%s*$' ) ~= ''
end
function p.table(frame)
local args = (frame.args[3] ~= nil) and frame.args or frame:getParent().args
local entries = {}
local colclass = {}
local colstyle = {}
local cols = tonumber(args['cols']) or 2
-- create the root table
local root = mw.html.create('table')
-- add table style for fullwidth
if isnotempty(args['fullwidth']) then
root
000
1:0
এই পাতায় ব্যবহৃত টেমপ্লেট:
মডিউল:Aligned table-এ ফেরত যান।