Jump to content

Module:Taxonomy: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

27 November 2025

  • curprev 15:4815:48, 27 November 2025 Admin talk contribs 2,119 bytes +635 No edit summary undo
  • curprev 15:4315:43, 27 November 2025 Admin talk contribs 1,484 bytes +1,484 Created page with "local p = {} -- Internal function to render a single node recursively local function renderNode(node, indent) indent = indent or 0 local out = string.rep(":", indent) .. node.label .. "\n" for _, child in ipairs(node.children) do out = out .. renderNode(child, indent + 1) end return out end -- Parse a "*"-style hierarchy string into a Lua table tree function p.parse(frame) local input = frame.args[1] or "" local nodes = {} local..."