Module:Distinguish

From FiguraMC
Revision as of 17:38, 28 September 2024 by TheKillerBunny (talk | contribs)
  • Not to be confused with
  • Not to be confused with
  • Not to be confused with
  • Not to be confused with

function hatnoteDistinguish(frame)
	local args = frame.args
	local final = {}
	
	for k, v in ipairs(args) do
		table.insert(final, "[[" .. v .. "]]")
	end
	if #final > 1 then
		final[#final] = "or " .. final[#final]
	end
	return frame:expandTemplate{title = "Hatnote", args = {"Not to be confused with " .. table.concat(final, ", ")}}
end

return {["hatnote"] = hatnoteDistinguish}