Module:Sandbox/User:The Gaffer/Modules/Infobox Recipe: Difference between revisions

From Brighter Shores Wiki
Jump to navigation Jump to search
Content added Content deleted
No edit summary
No edit summary
Line 2: Line 2:


function p.main(frame)
function p.main(frame)
local args = frame.getParent().args
local args = frame:getParent().args
local arg1 = args.arg1
local arg1 = args.arg1

Revision as of 18:40, 14 November 2024

Documentation for this module may be created at Module:Sandbox/User:The Gaffer/Modules/Infobox Recipe/doc

local p = {}

function p.main(frame)
    local args = frame:getParent().args
    
    local arg1 = args.arg1

    return arg1
end

return p