Module:If preview: Difference between revisions
NeonWabbit (talk | contribs) No edit summary |
NeonWabbit (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
local p = {} | local p = {} | ||
local getArgs = require("Module:Arguments").getArgs | |||
local cfg = mw.loadData('Module:If preview/configuration') | |||
-- Main function that returns nothing, even in preview | |||
function p.main(frame) | |||
return '' | |||
end | |||
function p.pmain(frame) | |||
return '' | |||
end | |||
-- Simplified warning function that returns nothing | |||
local function warning_text(warning) | |||
return '' | |||
end | |||
function p._warning(args) | |||
return '' | |||
end | |||
-- Commented out warning functions to prevent any output | |||
-- function p.warning(frame) | |||
-- return '' | |||
-- end | |||
function p.pwarning(frame) | |||
return '' | |||
end | |||
function p.warn(text) | |||
return '' | |||
end | |||
function p.consoleWarning(frame) | |||
return '' | |||
end | |||
return p | return p |
Revision as of 06:44, 2 November 2024
Documentation for this module may be created at Module:If preview/doc
local p = {}
local getArgs = require("Module:Arguments").getArgs
local cfg = mw.loadData('Module:If preview/configuration')
-- Main function that returns nothing, even in preview
function p.main(frame)
return ''
end
function p.pmain(frame)
return ''
end
-- Simplified warning function that returns nothing
local function warning_text(warning)
return ''
end
function p._warning(args)
return ''
end
-- Commented out warning functions to prevent any output
-- function p.warning(frame)
-- return ''
-- end
function p.pwarning(frame)
return ''
end
function p.warn(text)
return ''
end
function p.consoleWarning(frame)
return ''
end
return p