Module:Sandbox/Raph Williams65/Links

From Wikipedia, the free encyclopedia
Jump to navigation Jump to search

local p = {}

p.main = function(frame)
              strTitle = frame.args.title or mw.title.getCurrentTitle()
              strNamespace = frame.args.namespace or mw.title.getCurrentTitle().nsText
               return "[[" .. strNamespace.. ":" .. strTitle .. "|" .. strTitle .. "]] &#91;[[Special:Edit/" .. strNamespace .. ":" .. strTitle .. "|edit]]<br />. [[Special:History/" .. strNamespace .. ":" .. strTitle .. "|hist]]<br />. [[Special:WhatLinksHere/" .. strNamespace .. ":" .. strTitle .. "|links]]<br />. [[Special:PageInfo/" .. strNamespace .. ":" .. strTitle .. "|info]]<br />. [https://en.wikipedia.org/w/index.php?title=" .. strNamespace .. ":" .. strTitle .. "&action=watch watch]&#93;"
end
return p