Module:TNT
Jump to navigation
Jump to search
Documentation for this module may be created at Module:TNT/doc
-- Stub for Wikipedia Module:TNT (translation system)
-- Requires JsonConfig on Wikipedia; not used on L2L.
local p = {}
function p.format()
-- best-effort: return the first argument (usually the English string)
local frame = mw.getCurrentFrame()
local args = frame and frame.args or {}
return args[1] or ''
end
return p