Documentation for this module may be created at Module:ExperiencePicture/doc
local p = {}
function p.main(frame)
local args = frame:getParent().args
local picture = 'File:Avatar ESC.png'
if args['picture'] ~= nil and args['picture'] ~= 'File:' then
picture = args['picture']
end
return '[[ ' .. picture .. '|100px|link=]]'
end
return p