Модуль:ContentPages

Матеріал з Вікіджерел

Документацію для цього модуля можна створити у Модуль:ContentPages/документація

local dict = mw.loadData('Модуль:ContentPages/Data')

local cp = {}

function cp.category( frame )
	local objTitle

	objTitle = mw.title.getCurrentTitle()

	if objTitle.isSubpage then
		if dict[objTitle.rootText] then
			return ''
		end
	end

	return '[[Категорія:Сторінки зі змістовним текстом]]'

end

return cp