Module:If preview: Difference between revisions
NeonWabbit (talk | contribs) No edit summary |
NeonWabbit (talk | contribs) No edit summary Tag: Reverted |
||
Line 3: | Line 3: | ||
local cfg = mw.loadData('Module:If preview/configuration') | local cfg = mw.loadData('Module:If preview/configuration') | ||
-- Main function that returns | -- Main function that returns nil to avoid any output | ||
function p.main(frame) | function p.main(frame) | ||
return | return nil | ||
end | end | ||
function p.pmain(frame) | function p.pmain(frame) | ||
return | return nil | ||
end | end | ||
-- Simplified warning function that returns | -- Simplified warning function that returns nil | ||
local function warning_text(warning) | local function warning_text(warning) | ||
return | return nil | ||
end | end | ||
function p._warning(args) | function p._warning(args) | ||
return | return nil | ||
end | end | ||
-- Commented out warning functions to prevent any output | -- Commented out warning functions to prevent any output | ||
-- function p.warning(frame) | -- function p.warning(frame) | ||
-- return | -- return nil | ||
-- end | -- end | ||
function p.pwarning(frame) | function p.pwarning(frame) | ||
return | return nil | ||
end | end | ||
function p.warn(text) | function p.warn(text) | ||
return | return nil | ||
end | end | ||
function p.consoleWarning(frame) | function p.consoleWarning(frame) | ||
return | return nil | ||
end | end | ||
return p | return p |
Revision as of 06:45, 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 nil to avoid any output
function p.main(frame)
return nil
end
function p.pmain(frame)
return nil
end
-- Simplified warning function that returns nil
local function warning_text(warning)
return nil
end
function p._warning(args)
return nil
end
-- Commented out warning functions to prevent any output
-- function p.warning(frame)
-- return nil
-- end
function p.pwarning(frame)
return nil
end
function p.warn(text)
return nil
end
function p.consoleWarning(frame)
return nil
end
return p