No edit summary |
No edit summary |
||
| Line 4: | Line 4: | ||
function p.tabs (frame) | function p.tabs (frame) | ||
local args = frame:getParent().args | local args = frame:getParent().args | ||
return args[ | return args[1] | ||
end | end | ||
return p | return p | ||
Revision as of 11:30, 18 September 2024
Documentation for this module may be created at Module:Tabs/doc
inspect = require("Module:InspectLua")
local p = {}
function p.tabs (frame)
local args = frame:getParent().args
return args[1]
end
return p