View source for Module:SlidesToTabber
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local p = {}
p.main = function(f)
local args = f:getParent().args
if args[1] == nil then
return ""
end
local size = args[2] or '250px'
local tabberArgs = {'tabber',''}
for match in string.gmatch(args[1],"File:[^%c]*") do
local split = mw.text.split(match, "|", true)
local file = mw.text.trim(split[1] or '')
local desc = mw.text.trim(split[2] or '')
tabberArgs[2] = tabberArgs[2] .. "\n|-|\n "..desc.."=\n[["..file.."|"..size.."]]"
end
return f:callParserFunction('#tag', tabberArgs)
end
return p
000
1:0
Template used on this page:
Return to Module:SlidesToTabber.