Main public logs
Appearance
Combined display of all available logs of PanEcoDevWiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 16:27, 27 November 2025 Admin talk contribs created page Module:Cats (Created page with "local p = {} -- Utility to add a value to a table if not empty local function addIfValid(tbl, val) if val and val ~= "" then table.insert(tbl, val) end end -- Parse a "*"-style hierarchy string into a flat list of all nodes local function parseTaxonomyFlat(taxonomy) local flat = {} for stars, label in taxonomy:gmatch("(%*+)([^%*]+)") do label = mw.text.trim(label) addIfValid(flat, label) end return flat end -- Main funct...")