അജ്ഞാത ഉപയോക്താവ്
"ഘടകം:List" എന്ന താളിന്റെ പതിപ്പുകൾ തമ്മിലുള്ള വ്യത്യാസം
(ചെ.)
en:Module:List എന്നതിൽ നിന്ന് 3 പതിപ്പുകൾ ഇറക്കുമതി ചെയ്തു
(ചെ.) (Changed protection level for "Module:List": downgraded protection level per consensus ([Move=Allow only template editors and administrators] (indefinite) [Edit=Allow only template editors and administrators] (indefinite))) |
mlwiki>Jacob.jose (ചെ.) (en:Module:List എന്നതിൽ നിന്ന് 3 പതിപ്പുകൾ ഇറക്കുമതി ചെയ്തു) |
||
വരി 180: | വരി 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) | |||
if not value or not mw.ustring.find(value, '%S') then return nil end | |||
if mw.ustring.find(value, '^%s*[%*#;:]') then | |||
return value | |||
else | |||
return value:match('^%s*(.-)%s*$') | |||
end | |||
return 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 = {} |