Модул:category tree/topic cat/hierarchy

local export = {}

local function link(name)
	return "[[:Категорија:" .. mw.language.new("sr"):ucfirst(name) .. "|" .. name .. "]]"
end

function export.show(frame)
	local data = require("Модул:category tree/topic cat/data")
	local name = "parents"
	local exempt = {
		["листа свих"] = true,
		["листа тема"] = true,
		["политички подрегиони"] = true,
		["градови"] = true,
	}
	return require("Модул:hierarchy").show(data, name, link, exempt)
end

return export