Jump to content

Module:Revlink

Unchecked
From Wikipedia

Documentation for this module may be created at Module:Revlink/doc

-- I've probably made some mistakes below; this is an experimental hack.
local p = {}
function p.id(frame)
    -- 'mw.uri.scriptPath' not yet available?
    url = string.format('<nowiki><a href="/w/index.php?oldid=%d">%s</a></nowiki>', frame.args[1], frame.args[2] or frame.args[1])
    return frame:expandTemplate{title = 'Link', args = {url}}
end
return p