Difference between revisions of "Module:IDs"
Jump to navigation
Jump to search
m |
m |
||
| Line 4: | Line 4: | ||
local ids = frame:getParent().args[1] | local ids = frame:getParent().args[1] | ||
local ret = "<span style=\"font-family: monospace; font-size: 13px;\">" | local ret = "<span style=\"font-family: monospace; font-size: 13px;\">" | ||
| − | + | for v in string.gmatch(ids, "([A-Z0-9]+)") do | |
| − | for v in string.gmatch(ids, "([A-Z0-9] | ||
ret = ret .. v .. " " | ret = ret .. v .. " " | ||
end | end | ||
Revision as of 14:44, 18 May 2020
Documentation for this module may be created at Module:IDs/doc
local p = {};
function p.run(frame)
local ids = frame:getParent().args[1]
local ret = "<span style=\"font-family: monospace; font-size: 13px;\">"
for v in string.gmatch(ids, "([A-Z0-9]+)") do
ret = ret .. v .. " "
end
return ret .. "</span>"
end
return p