If you are unable to login to the wiki you created, wait a bit for the cache to clear and then try clearing your cookies and logging in again.

Your donation matters a lot, even if it's just $1.
Donate

Module:No ping: Difference between revisions

From Meta Wiki
Jump to navigation Jump to search
m 1 revision imported: some changes are needed ; like removing link to UTRS
MeowyCats2 (talk | contribs)
m 5 revisions imported
 
(No difference)

Latest revision as of 07:55, 21 December 2024

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

-- This module implements {{noping}}.

local p = {}

function p.main(frame)
	local args = frame:getParent().args
	return p._main(args)
end

function p._main(args)
	local ret = {}
	local fullUrl = mw.uri.fullUrl
	local format = string.format
	for i, username in ipairs(args) do
		local url = fullUrl(mw.site.namespaces.User.name .. ':' .. username)
		url = tostring(url)
		local label = args['label' .. tostring(i)]
		url = format('[%s %s]', url, label or username)
		ret[#ret + 1] = url
	end
	ret = mw.text.listToText(ret)
	ret = '<span class="plainlinks">' .. ret .. '</span>'
	return ret
end

return p