More actions
m accept 0 arguments |
m lua doin a little trollin |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
function hatnoteDistinguish(frame) | function hatnoteDistinguish(frame) | ||
local args = frame:getParent().args | local args = frame:getParent().args | ||
if | if not args[1] then return frame:expandTemplate { title = [[Hatnote]]; args = { [[Not to be confused. ]]; }; }; end; | ||
local final = {} | local final = {} | ||
Latest revision as of 01:39, 29 September 2024
- Not to be confused.
- Not to be confused with Foo.
function hatnoteDistinguish(frame)
local args = frame:getParent().args
if not args[1] then return frame:expandTemplate { title = [[Hatnote]]; args = { [[Not to be confused. ]]; }; }; end;
local final = {}
for k, v in ipairs(args) do
table.insert(final, "[[" .. v .. "]]")
end
local sep = " "
if #final > 1 then
final[#final] = "or " .. final[#final]
if #final > 2 then
sep = ", "
else
sep = " "
end
end
return frame:expandTemplate{title = "Hatnote", args = {"Not to be confused with " .. table.concat(final, sep) .. "."}}
end
return {["hatnote"] = hatnoteDistinguish}