Module:category tree/topic cat/hierarchy
Appearance
- පහත දැක්වෙන උපදෙස්, Module:category tree/topic cat/hierarchy/documentation හි පිහිටා ඇත. Module:category tree/topic cat/hierarchy/documentation]]. [සංස්කරණය]
- ප්රයෝජනවත් සබැඳි: root page • root page’s subpages • සබැඳි • transclusions • testcases • sandbox
The tree is in Module:category tree/topic cat/hierarchy/documentation.
local export = {}
local function link(name)
return "[[:ප්රවර්ගය:" .. mw.language.new("si"):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,
["political subdivisions"] = true,
["cities"] = true,
}
return require("Module:hierarchy").show(data, name, link, exempt)
end
return export