Toggle menu
14
236
69
27.2K
Kenshi Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Navbox with collapsible groups: Difference between revisions

From Kenshi Wiki
No edit summary
Tag: Reverted
No edit summary
Tag: Manual revert
 
(One intermediate revision by the same user not shown)
Line 4: Line 4:
return {
return {
_navbox = function (frame) return Navbox._withCollapsibleGroups(frame) end,
_navbox = function (frame) return Navbox._withCollapsibleGroups(frame) end,
navbox = function (frame) return Navbox[' with collapsible groups'](frame) end
navbox = function (frame) return Navbox['with collapsible groups'](frame) end
}
}

Latest revision as of 20:43, 15 February 2025

Implements {{Navbox with collapsible groups}}

Usage

{{#invoke:Navbox with collapsible groups|navbox}}

See Template:Navbox with collapsible groups for more detailed usage.

See also


-- This module implements {{Navbox with collapsible groups}}

local Navbox = require('Module:Navbox')
return {
	_navbox = function (frame) return Navbox._withCollapsibleGroups(frame) end,
	navbox = function (frame) return Navbox['with collapsible groups'](frame) end
}