মডিউল:Infobox: সংশোধিত সংস্করণের মধ্যে পার্থক্য
Created page with "local p = {} local args = {} local origArgs = {} local root local empty_row_categories = {} local category_in_empty_row_pattern = '%[%[%s*[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]%s*:[^]]*]]' local has_rows = false local lists = { plainlist_t = { patterns = { '^plainlist$', '%splainlist$', '^plainlist%s', '%splainlist%s' }, found = false, styles = 'Plainlist/styles.css' }, hlist_t = { patterns = { '^hlist$', '%shlist$', '^hlist%s', '%shlist%s'..." ট্যাগ: মোবাইল সম্পাদনা মোবাইল ওয়েব সম্পাদনা |
সম্পাদনা সারাংশ নেই ট্যাগ: মোবাইল সম্পাদনা মোবাইল ওয়েব সম্পাদনা |
||
৬৭১ নং লাইন: | ৬৭১ নং লাইন: | ||
end | end | ||
-- If called via #in | -- If called via #invoke, use the args passed into the invoking template. | ||
-- Otherwise, for testing purposes, assume args are being passed directly in. | |||
function p.infobox(frame) | |||
if frame == mw.getCurrentFrame() then | |||
origArgs = frame:getParent().args | |||
else | |||
origArgs = frame | |||
end | |||
parseDataParameters() | |||
return _infobox() | |||
end | |||
-- For calling via #invoke within a template | |||
function p.infoboxTemplate(frame) | |||
origArgs = {} | |||
for k,v in pairs(frame.args) do origArgs[k] = mw.text.trim(v) end | |||
parseDataParameters() | |||
return _infobox() | |||
end | |||
return p |