モジュール:サンドボックス/The Non Useful/Sandbox

提供: Minecraft Wiki
ナビゲーションに移動 検索に移動
local p = {}

function p.totalPages(frame)
    local total = 0
    for i, ns in ipairs(frame.args) do
        local nsId = tonumber(ns)
        if nsId then
            total = total + mw.site.stats.pagesInNamespace(nsId)
        end
    end
    return total
end

return p