Documentation for this module may be created at Module:CommunosTestModule/doc
local p = {}
local tab_amount = 5
function p.test(frame)
local amount = frame.args["amount"]
local parameter = frame.args["parameter"]
local tabs = "<tabber>"
for i=0,amount,1
do
tabs = tabs.."test"
-- "|-|Rank"..i..{{=}}..parameter
end
tabs = tabs.."</tabber>"
return frame:preprocess(tabs)
end
return p