Timeline
Jump to navigation
Jump to search
Documentation for this module may be created at Module:Timeline/doc
local p = {}
function p.render( frame )
if not mw.smw then
return "mw.smw module not found"
end
local people = mw.smw.ask("[[Category:Person]]|?Person:Name|?Person:Date of birth|?Person:Date of death")
local result = ""
for num, row in pairs( people ) do
result = result .. row["Person:Name"] .. "<br>"
end
return people
end
return p