Module:Indicator datasets table: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 11: | Line 11: | ||
for _, id in ipairs(ids) do | for _, id in ipairs(ids) do | ||
end | end | ||
--return table.concat(dates, ", ") | |||
return table.concat(tonumber(id), " - ") | |||
end | end | ||
return p | return p | ||
Revision as of 14:00, 2 May 2024
Documentation for this module may be created at Module:Indicator datasets table/doc
local p = {}
function p.getDatasets(frame)
local articleids = frame.args.articleids
if not articleids then
return "Error: articleids not provided"
end
local ids = mw.text.split(articleids, ",")
local dates = {}
for _, id in ipairs(ids) do
end
--return table.concat(dates, ", ")
return table.concat(tonumber(id), " - ")
end
return p