View source for Module:User contrib
MyWikiBiz, Author Your Legacy — Tuesday July 08, 2025
Jump to navigationJump to searchYou do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
local p = {}
local Userbox = require('Module:Userbox')
local getArgs = require('Module:Arguments').getArgs
local function urlencode(text)
-- Return equivalent of {{urlencode:text}}.
local function byte(char)
return string.format('%%%02X', string.byte(char))
end
return text:gsub('[^ %w%-._]', byte):gsub(' ', '+')
end
local function formatNumber(number)
number = number:gsub(',', '')
return mw.getContentLanguage():formatNum( tonumber(number) )
end
function p.contrib(frame, args)
if not args then
args = getArgs(frame)
000
1:0
Templates used on this page:
Return to Module:User contrib.