Module:Interwiki redirect
Appearance
| This article or section is undergoing significant expansion or restructuring. You are welcome to assist in its construction by editing it as well. If this article or section has not been edited in several days, please remove this template. If you are actively editing this article or section, you can replace this template with {{in use|5 minutes}}.
This module was last edited by Awesome Aasim (talk | contribs) 21 months ago. (Update timer) |
require("Module:Module wikitext")._addText("{{construction}}")
local p = {}
p.main = function(frame)
local args = require("Module:Arguments").getArgs(frame)
local interwikiList = mw.site.interwikiMap("local")
local title = mw.title.new(args[1])
local interwiki = title.interwiki
local data = interwikiList[interwiki]
return ''
end
return p