View source for Module:Page reports
MyWikiBiz, Author Your Legacy — Friday May 16, 2025
Jump to navigationJump to searchYou do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
--In development. See Template:Page reports.
local p = {};
function p.demo( frame )
local origArgs
if frame == mw.getCurrentFrame() then
origArgs = frame:getParent().args
for k, v in pairs( frame.args ) do
origArgs = frame.args
break
end
else
origArgs = frame
end
return "hello world" .. origArgs[1]
end
return p
000
1:0
Template used on this page:
Return to Module:Page reports.