return mw.ustring.format(unpack(params))
end
end
function m.Przypisy(frame)
mw.logObject(frame:getParent():getTitle(), "parent:title")
_ = mw.title.new("Module:Łatki/Wywołanie funkcji/Przypisy").id
local group = frame:getParent().args[""]
local refs = {}
for k, v in pairs(frame:getParent().args) do
if k == "" then
-- group
elseif type(k) == "string" then
refs[k] = v
end
end
local contents = {}
for k, v in pairs(refs) do
local ref = frame:extensionTag('ref', v, {name=k, group=group})
table.insert(contents, ref)
end
return frame:extensionTag('references', table.concat(contents), {group=group})
end