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 9: Line 9:
local out = {}
local out = {}
local debugMessage = 'Debug Info:<br>' ..
local debugMessage = args.facility
'facility: ' .. (args.facility)



Revision as of 18:10, 14 November 2024

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

local p = {}

local parse = require('Module:Param Parse')

function p.main(frame)
    local args = frame.args
    local mw = require('mw')

    local out = {}
    
    local debugMessage = args.facility

        
    table.insert(out, debugMessage)

    return table.concat(out, '\n')
end

return p