Jump to content

Module:Distinguish/sandbox

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Nihiltres (talk | contribs) at 20:27, 14 September 2018 (Tweaks). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local mHatnote = require('Module:Hatnote')
local mHatlist = require('Module:Hatnote list')
local mArguments --initialize lazily
local mTableTools --initialize lazily
local libraryUtil = require('libraryUtil')
local checkType = libraryUtil.checkType
local p = {}

function p.distinguish(frame)
	mArguments = require('Module:Arguments')
	mTableTools = require('Module:TableTools')
	local args = mTableTools.compressSparseArray(mArguments.getArgs(frame))
	local text = args.text or args.t
	return p._distinguish(args, text, args.selfref)
end

function p._distinguish(args, text, selfref)
	checkType("_distinguish", 1, args, 'table')
	if #args == 0 and not text then
		return mHatnote.makeWikitextError(
			'No page names or text specified',
			'Template:Distinguish#Errors'
		)
	end
	local text = string.format(
		'Not to be confused with %s.',
		text or mHatlist.orList(args, true)
	)
	local hnOptions = {selfref = selfref}
	return mHatnote._hatnote(text, hnOptions)
end

return p