Модуль:Wikidata/category

Материал из DZWIKI
Перейти к навигации Перейти к поиску
Документация


local p = {}
 
function p.categorizeIfNoParams(frame)
	local topFrame = frame
	while topFrame:getParent() do topFrame = topFrame:getParent() end
	for _ in pairs( topFrame.args ) do return end
	return "[[Категория:DZWIKI:Карточки без параметров]]"
end

return p