Jump to content

Module:Sandbox/Raph Williams65/ModuleLink

From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by Raph Williams65 (talk | contribs) at 07:43, 5 April 2025 (Module tools). The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
local p = {}

p.main = function(frame)
           strName = frame.args[1] or mw.title.getCurrentTitle()
           return "[[Module:" .. strName .. "|" .. strName .. "]] &#91;[[Module talk:" .. strName .. "|talk]]<br />. [[Special:Edit/Module:" .. strName .. "|edit]]<br />. [[Module:" .. strName .. "/testcases|run]]<br />. [https://en.wikipedia.org/w/index.php?title=Module:" .. strName .. "&action=watch watch]&#93;"
end

return p