More actions
No edit summary |
mNo edit summary |
||
Line 4: | Line 4: | ||
for k, v in ipairs(args) do | for k, v in ipairs(args) do | ||
mw.log(k, #args) | |||
if k == #args then | if k == #args then | ||
table.insert(final, "or") | table.insert(final, "or") |
Revision as of 17:36, 28 September 2024
- 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
mw.log(k, #args)
if k == #args then
table.insert(final, "or")
end
table.insert(final, "[[" .. v .. "]]")
end
return frame:expandTemplate{title = "Hatnote", args = {"Not to be confused with " .. table.concat(final, ", ")}}
end
return {["hatnote"] = hatnoteDistinguish}