Loading AI tools
来自维基百科,自由的百科全书
local p = {}
local getArgs = require('Module:Arguments').getArgs
local function makeInvokeFunc(funcName)
return function(frame)
local args = getArgs(frame)
return p[funcName](args)
end
end
p.main = makeInvokeFunc('_main')
function p._main(args)
local images = {}
for _, v in ipairs(args) do
table.insert(images, '* [[File:' .. v.. '|16x16px]]')
end
if #images > 0 then
return table.concat(images, '\n')
end
return ''
end
return p
Seamless Wikipedia browsing. On steroids.
Every time you click a link to Wikipedia, Wiktionary or Wikiquote in your browser's search results, it will show the modern Wikiwand interface.
Wikiwand extension is a five stars, simple, with minimum permission required to keep your browsing private, safe and transparent.