Module:IDs
Jump to navigation
Jump to search
Documentation for this module may be created at Module:IDs/doc
local p = {};
function p.run(frame)
local ids = frame:getParent().args
local ret = "<span style=\"font-family: monospace; font-size: 13px;\">"
for k,v in pairs(ids) do
ret = ret .. v .. " "
end
return ret .. "</span>"
end
return p