Module:List: Difference between revisions

118 bytes removed ,  2 years ago
m
3 revisions imported from wikipedia:Module:List: see Topic:Vtixlm0q28eo6jtf
(Implement edit request - don't trim passed arguments while still removing whitespace-only parameters)
m (3 revisions imported from wikipedia:Module:List: see Topic:Vtixlm0q28eo6jtf)
 
(3 intermediate revisions by 2 users not shown)
Line 180: Line 180:
p[listType] = function (frame)
p[listType] = function (frame)
local mArguments = require('Module:Arguments')
local mArguments = require('Module:Arguments')
local origArgs = mArguments.getArgs(frame, {
local origArgs = mArguments.getArgs(frame)
valueFunc = function (key, value)
return value and mw.ustring.find(value, '%S') and value or nil
end
})
-- Copy all the arguments to a new table, for faster indexing.
-- Copy all the arguments to a new table, for faster indexing.
local args = {}
local args = {}