Toggle menu
15
236
70
27.5K
Kenshi Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Revision as of 21:44, 22 February 2025 by Prd (talk | contribs) (Created page with "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")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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