Module:Delink: Difference between revisions

From the Croc Wiki, the Croc encyclopedia
Jump to navigationJump to search
Content added Content deleted
(make p local)
(expose _delink)
Line 142: Line 142:
end
end


local function _delink(args)
function p._delink(args)
local text = args[1] or ""
local text = args[1] or ""
if args.refs == "yes" then
if args.refs == "yes" then
Line 182: Line 182:
args = frame
args = frame
end
end
return _delink(args)
return p._delink(args)
end
end