Jump to content

Module:Navbox with columns/configuration: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
use boxtype to name template
subgroups = {'subgroup%d', 'child%d', '%d'},
Tag: Reverted
Line 1: Line 1:
return {
return {
--These values will be merged with those from [[Module:Navbox/configuration]]
--These values will be merged with those from [[Module:Navbox/configuration]]
keyword = {},
keyword = {
subgroups = {'subgroup%d', 'child%d', '%d'},
},
pattern = {
pattern = {
colnum = '^col(%d+)$',
colnum = '^col(%d+)$',

Revision as of 21:07, 17 September 2024

return {
	--These values will be merged with those from [[Module:Navbox/configuration]]
	keyword = {
		subgroups = {'subgroup%d', 'child%d', '%d'},
	},
	pattern = {
		colnum = '^col(%d+)$',
		colheadernum = '^col(%d+)header$',
		colfooternum = '^col(%d+)footer$',
		withColumns = 'Template:Navbox with columns',
		without_first_col = 'Category:Pages using navbox columns without the first column'
	},
	arg = {
		colheaderstyle = 'colheaderstyle',
		colheader_and_num = 'col%dheader',
		colheaderstyle_and_num = 'col%dheaderstyle',
		colheadercolspan_and_num = 'col%dheadercolspan',
		colstyle = 'colstyle',
		col_and_num = 'col%d',
		colstyle_and_num = 'col%dstyle',
		colwidth = 'colwidth',
		colwidth_and_num = 'col%dwidth',
		colhfooterstyle = 'colfooterstyle',
		colfooter_and_num = 'col%dfooter',
		colfooterstyle_and_num = 'col%dfooterstyle',
		colfootercolspan_and_num = 'col%dfootercolspan',
		coltablestyle = 'coltablestyle',
		evencolstyle = 'evencolstyle',
		fullwidth = 'fullwidth',
		oddcolstyle = 'oddcolstyle',
		padding = 'padding'
	},
}