Jump to content

Module:Tropical cyclone season effects

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Chlod (talk | contribs) at 09:33, 19 February 2021 (Created page with '-- Used for tropical cyclone season articles. local invocation = require('Module:Template invocation').invocation local getArgs = require('Module:Arguments').ge...'). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

-- Used for tropical cyclone season articles.

local invocation = require('Module:Template invocation').invocation
local getArgs = require('Module:Arguments').getArgs
local yesno = require('Module:Yesno')
local p = {}

function p.main(frame)
	local args = getArgs(frame, {
		trim = false,
		removeBlanks = false
	})
    return p._main(frame, args)
end

function p._main(frame, args)
    mw.log(args)
end

return p