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

From blackwiki
Jump to navigation Jump to search
blackwiki>HastaLaVi2
(+ data)
blackwiki>HastaLaVi2
(uppercase)
Line 5: Line 5:
 
sort_keys = {"B", "B"},
 
sort_keys = {"B", "B"},
 
stage = 4,
 
stage = 4,
description = "'''people born''' in the {{{type}}} {{{year}}}",
+
description = "'''People born''' in the {{{type}}} {{{year}}}",
 
see = {"deaths"},
 
see = {"deaths"},
 
}
 
}
Line 13: Line 13:
 
sort_keys = {"D", "D"},
 
sort_keys = {"D", "D"},
 
stage = 4,
 
stage = 4,
description = "'''people who died''' in the {{{type}}} {{{year}}}",
+
description = "'''People who died''' in the {{{type}}} {{{year}}}",
 
bak = {"births"},
 
bak = {"births"},
 
}
 
}
  
 
return k
 
return k

Revision as of 20:20, 17 September 2020

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

local k = {}

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

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

return k