Jump to content

Module:SortedItemLinks: 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 March 2026

  • curprev 12:2712:27, 27 March 2026 Mildew talk contribs 880 bytes +880 Created page with "local p = {} -- Return a sorted <ul> of wiki links from a comma-delimited list of item pages function p.fromDelimited(frame) local raw = frame.args[1] or "" local delimiter = frame.args.delimiter or "," local items = mw.text.split(raw, delimiter) local entries = {} for _, entry in ipairs(items) do local pageName = mw.text.trim(entry) if pageName ~= "" then table.insert(entries, pageName) end end -- Sort..."