Documentation for this module may be created at Module:MainPageStats/doc
local p = {} function p.get(frame) local type = frame.args.type if type == "articles" then return mw.site.stats.pages or "–" elseif type == "edits" then return mw.site.stats.edits or "–" end end return p