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 = {}
function p.locations(frame)
local pframe = frame:getParent()
local config = frame.args -- the arguments passed BY the template, in the wikitext of the template itself
local args = pframe.args -- the arguments passed TO the template, in the wikitext that transcludes the template
local mainModule = require "Module:Jctint/core"
return mainModule.locations(args)
end
return p