Documentation for this module may be created at Module:Ping/doc

local export = {}
function export.getWikitext(frame)
	str = ""
	for k,v in pairs(mw.getCurrentFrame():getParent().args) do
		str = str .. "[[User:" .. v .. "|@" .. v .. "]], "
	end
	return mw.ustring.sub(str, 1, -3)
end
return export