View source for Module:also
Jump to navigation
Jump to search
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
local export = {}
local m_links = require("Module:links")
local getArgs = require('Module:Arguments').getArgs
function export.show(frame)
local args = getArgs(frame)
local links = {}
local here = args["test"] or mw.title.getCurrentTitle().subpageText
if args[1] then -- manual mode
local i = 1
while args[i] do
if args[i] ~= here then
table.insert(links, "'''" .. m_links.full_link{term = args[i]} .. "'''")
end
i = i + 1
end
else
return nil
000
1:0
Templates used on this page:
Return to Module:also.