Module:Navbox top and bottom: Difference between revisions
Appearance
Content deleted Content added
No edit summary |
simplify |
||
Line 7: | Line 7: | ||
if value ~= '' then |
if value ~= '' then |
||
if type(argName) == 'string' then |
if type(argName) == 'string' then |
||
-- shift list numbers by 1 |
|||
if argName:find('^list[%d]+') then |
|||
local k = mw.ustring.gsub(argName,'^list([^%d]+)', '%1') |
|||
argName = mw.ustring.gsub(argName,'^list[%d]+', 'list' .. (tonumber(k) + 1)) |
|||
end |
|||
args[argName] = value |
args[argName] = value |
||
end |
end |
Revision as of 14:26, 3 November 2021
![]() | This Lua module is used on approximately 16,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 depends on the following other modules: |
Usage
{{#invoke:Navbox top and bottom|function_name}}
-- This implements {{navbox top}} and {{navbox bottom}}
local p = {}
local function build_navbox(parentArgs, list)
local args = {}
for argName, value in pairs(parentArgs) do
if value ~= '' then
if type(argName) == 'string' then
args[argName] = value
end
end
end
args['list1padding'] = '0'
args['list1'] = list
-- Note Navbox.navbox() has a kludge to order the parent frame's args
-- into a specific order. For now, this is omitted from this module.
local Navbox = require('Module:Navbox')
return Navbox._navbox(args)
end
function p.top(frame)
local args = frame:getParent().args
local parts = mw.text.split(build_navbox(args, '<ADD LIST HERE>'), '<ADD LIST HERE>')
return parts[1]
end
function p.bottom(frame)
local args = frame:getParent().args
local parts = mw.text.split(build_navbox(args, '<ADD LIST HERE>'), '<ADD LIST HERE>')
return parts[2]
end
return p