Module:Phabricator sitemap: Difference between revisions

From Guild of Archivists
m (1 revision imported)
 
(No difference)

Latest revision as of 07:26, 30 October 2015

Documentation for this module may be created at Module:Phabricator sitemap/doc

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