View source for Module:Navbox
From The Goon Show Depository
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
-- require('strict')
local p = {}
local cfg = mw.loadData('Module:Navbox/configuration')
local inArray = require("Module:TableTools").inArray
local getArgs -- lazily initialized
local format = string.format
function p._navbox(args)
local function striped(wikitext, border)
-- Return wikitext with markers replaced for odd/even striping.
-- Child (subgroup) navboxes are flagged with a category that is removed
-- by parent navboxes. The result is that the category shows all pages
-- where a child navbox is not contained in a parent navbox.
local orphanCat = cfg.category.orphan
if border == cfg.keyword.border_subgroup and args[cfg.arg.orphan] ~= cfg.keyword.orphan_yes then
-- No change; striping occurs in outermost navbox.
return wikitext .. orphanCat
end
local first, second = cfg.class.navbox_odd_part, cfg.class.navbox_even_part
if args[cfg.arg.evenodd] then
000
1:0
Templates used on this page:
- Template:Documentation (view source)
- Template:Uses TemplateStyles (view source)
- Module:Arguments (view source)
- Module:Documentation (view source)
- Module:Documentation/config (view source)
- Module:Documentation/styles.css (view source)
- Module:List (view source)
- Module:Message box (view source)
- Module:Navbox (view source)
- Module:Navbox/configuration (view source)
- Module:Navbox/doc (view source)
- Module:Navbox/styles.css (view source)
- Module:TNT (view source)
- Module:TableTools (view source)
- Module:Uses TemplateStyles (view source)
- Module:Uses TemplateStyles/config (view source)
- Module:Yesno (view source)
Return to Module:Navbox.