Module:category tree/poscatboiler/hierarchy

From Wiktionary, the free dictionary
Jump to navigation Jump to search
local export = {}

function export.show(frame)
	local data = require("Module:category tree/poscatboiler/data")
	return require("Module:hierarchy").show(data, "parents", function(name)
		return "[[:Category:" .. mw.language.new("en"):ucfirst(name) .. " by language|" .. name .. "]]"
	end, {["list of sets"]=true,})
end

return export