Module:ParseList: Difference between revisions

Jump to navigation Jump to search
no edit summary
No edit summary
No edit summary
Line 95: Line 95:
local converter = converters[type]
local converter = converters[type]
local elements = {}
local elements = {}
for str in splitListString(args[1]) do
local listString = args[1]
local strings = splitListString(listString)
for str in strings do
table.insert(elements, processElement(str))
table.insert(elements, processElement(str))
end
end

Navigation menu