Module:Phabricator sitemap

From eCatalog Manager Wiki
Jump to navigation Jump to search

local p = {}

function p.tasks( frame )

   local links = {}
   local i = 1
   repeat
       links[i] = "*phab:T" .. tostring(i) .. ""
       i = i + 1
   until i >= 100000
   return table.concat( links, "\n" )

end

return p