Module:Sandbox/Kephir
Appearance
-- [[User:Kephir]]'s Scribunto sandbox
-- do not expect anything to stay here in place
return {
argtest = function (frame)
local result = ''
for key, value in pairs(frame:getParent().args) do
result = result .. key .. '=' .. value .. '<br/>'
end
return result
end,
templtest = function (frame)
return '{{X1}}'
end
}