Documentation for this module may be created at Module:Sandbox/PinkAmpersand/doc
-- for Pink&
local p = {}
function p.thing(frame)
local parent = frame:getParent()
local text = ''
for arg, value in pairs(parent.args) do
text = text .. '[[:' .. arg .. ':' .. value .. '|<span title=""' .. value .. '" on the {{#language:' .. arg .. '|en}} Wikipedia">' .. arg .. ']]' .. '/'
end
return text
end
return p