Jump to content

Module:CommaLink: 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.

5 June 2026

  • curprev 04:1404:14, 5 June 2026 Mr.Dungeon talk contribs 348 bytes +348 Created page with "local p = {} function p.link(frame) local input = frame.args[1] or "" if input == "" then return "" end local result = {} for item in string.gmatch(input, "([^,]+)") do item = item:match("^%s*(.-)%s*$") table.insert(result, "" .. item .. "") end return table.concat(result, ", ") end return p"