Module:IconList: Revision history

Jump to navigation Jump to search

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.

28 November 2025

  • curprev 17:2117:21, 28 November 2025 LVL talk contribs 660 bytes +660 Created page with "local p = {} local Icon = require('Module:Icon') function p.parse(frame) local input = frame.args[1] or "" local size = frame.args[2] or "35px" if input == "" then return "" end local result = {} -- Split by comma for item in string.gmatch(input, '([^,]+)') do -- Trim whitespace item = item:match("^%s*(.-)%s*$") -- Create a fake frame to pass to the existing Icon module local fakeFrame = { getPa..."