模組:Category tree/topic cat/hierarchy
- 下列說明文檔位於Module:Category tree/topic cat/hierarchy/doc。[編輯]
- 相關連結:根頁面 • 根頁面的子頁面 • 本頁面的子頁面 • 链入 • 嵌入包含 • 測試用例 • 沙盒
结构树位于Module:category tree/topic cat/hierarchy/doc。
local export = {}
local function link(name)
return "[[:Category:" .. mw.language.new("en"):ucfirst(name) .. "|" .. name .. "]]"
end
function export.show(frame)
local data = require("Module:category tree/topic cat/data")["LABELS"]
local name = "parents"
local exempt = {
["集合列表"] = true,
["主題列表"] = true,
["政治選區"] = true,
["城市"] = true,
}
return require("Module:hierarchy").show(data, name, link, exempt)
end
return export