A Wiki in the Desert
Log in

Difference between revisions of "Module:HerbGallery"

From A Wiki in the Desert
(Created page with "local p = {} --p stands for package function p.gallery( frame ) return "Hello, world!" end return p")
 
Line 2: Line 2:
  
 
function p.gallery( frame )
 
function p.gallery( frame )
     return "Hello, world!"
+
local origArgs = (type(frame.getParent) == 'function') and frame:getParent().args or frame
 +
     return origArgs
 
end
 
end
  
 
return p
 
return p

Revision as of 02:31, 15 May 2021

Documentation for this module may be created at Module:HerbGallery/doc

local p = {} --p stands for package

function p.gallery( frame )
	local origArgs = (type(frame.getParent) == 'function') and frame:getParent().args or frame
    return origArgs
end

return p