Модуль:Serialization/EntityTableSelector: различия между версиями
Pok (обсуждение | вклад) Новая страница: «local p = {} local getArgs = require('Module:Arguments').getArgs local JsonPaths = require('Module:JsonPaths') local entityTableDataCache local function trim(value) return mw.text.trim(value or "") end local function deepCopy(source) if type(source) ~= "table" then return source end local copy = {} for key, value in pairs(source) do copy[key] = deepCopy(value) end return copy end local function deepMerge(tar...» |
Pok (обсуждение | вклад) Нет описания правки |
||
| Строка 356: | Строка 356: | ||
end | end | ||
return renderSelector(selector, {}, false) | return frame:preprocess(renderSelector(selector, {}, false)) | ||
end | end | ||
return p | return p | ||