Module:Phabricator sitemap

From Galim Synthesizers
Revision as of 15:37, 11 November 2022 by Joelmartin (talk | contribs) (1 revision imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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