Toggle menu
9
204
47
18.7K
KenshiDB
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Subpages:

For Template:ArticleSize.


local p = {}

function p.size(frame)
    local title = frame.args[1] or mw.title.getCurrentTitle().text
    local page = mw.title.new(title)
    local content = page and page:getContent() or ""
    local size = #content
    return mw.language.getContentLanguage():formatNum(size)
end

return p