Module:Jctint/sandbox
Appearance
![]() | This is the module sandbox page for Module:Jctint (diff). |
![]() | This Lua module is used on 15,000+ pages and changes may be widely noticed. Test changes in the module's /sandbox or /testcases subpages, or in your own module sandbox. Consider discussing changes on the talk page before implementing them. |
This module implements the {{jctint/core}} template. Please see the template page for usage instructions.
Usage
From wikitext
{{#invoke:Jctint/sandbox|jctint}}
From Lua
local jctintCoreSandboxModule = require("Module:Jctint/sandbox")
jctintCoreSandboxModule._jctint(args)
Tracking categories
local p = {}
local mainModule = require "Module:Jctint/core"
local getArgs = require('Module:Arguments').getArgs
function p.locations(frame)
local args = getArgs(frame)
return mainModule.locations(args)
end
function p.units(frame)
local args = getArgs(frame)
return mainModule.units(args)
end
function p.destinations(frame)
local args = getArgs(frame)
return mainModule.destinations(args)
end
return p