Difference between revisions of "Module:Autocat/data/people"

From blackwiki
Jump to navigation Jump to search
blackwiki>HastaLaVi2
(edit)
blackwiki>HastaLaVi2
(fix)
Line 14: Line 14:
 
sort_keys = {"B", "B"},
 
sort_keys = {"B", "B"},
 
stage = 4,
 
stage = 4,
description = "'''People born''' in the {{{type}}} {{{year}}}",
+
description = "'''People born''' {{{hide|in the}}} {{{type}}} {{{year}}}",
 
see = {"deaths"},
 
see = {"deaths"},
 
byCat = "up",
 
byCat = "up",
Line 23: Line 23:
 
sort_keys = {"D", "D"},
 
sort_keys = {"D", "D"},
 
stage = 4,
 
stage = 4,
description = "'''People who died''' in the {{{type}}} {{{year}}}",
+
description = "'''People who died''' {{{hide|in the}}} {{{type}}} {{{year}}}",
 
see = {"births"},
 
see = {"births"},
 
}
 
}
  
 
return k
 
return k

Revision as of 16:47, 18 September 2020

Documentation for this module may be created at Module:Autocat/data/people/doc

local k = {}

k["people"] = {
	parents = {"categories"},
	sort_keys = {"P"},
	stage = 4,
	see = {"births", "deaths"},
}

--the list is in alphabetical order

k["births"] = {
	parents = {"beginnings", "people"},
	sort_keys = {"B", "B"},
	stage = 4,
	description = "'''People born''' {{{hide|in the}}} {{{type}}} {{{year}}}",
	see = {"deaths"},
	byCat = "up",
}

k["deaths"] = {
	parents = {"endings", "people"},
	sort_keys = {"D", "D"},
	stage = 4,
	description = "'''People who died''' {{{hide|in the}}} {{{type}}} {{{year}}}",
	see = {"births"},
}

return k