This page is semi-protected so that only autoconfirmed users can edit it.

Module:Ping

Jump to navigation Jump to search

This module lists users, linking their names to their user pages, therefore notifying them about being mentioned.

Names are separated by commas and "and" conjunction. Example: Dhranios, Nixinova and Sonicwave.

[view] [edit] [history] [refresh]The above documentation is transcluded from Module:Ping/doc.
local p = {}
p.ping = function( f )
	local names =  {}
	for _, name in ipairs( f:getParent().args ) do
		table.insert( names, '[[User:' .. name .. '|' .. name .. ']]' )
	end
	
	return mw.text.listToText( names )
end
return p