Module:T7/ComboRow: Revision history

From SuperCombo Wiki

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.

11 May 2025

  • curprev 22:1022:10, 11 May 2025Emerald3ME talk contribs 418 bytes +418 Created page with "local p = {} function trim(s) return s:match('^%s*(.-)%s*$') end function p.comboRow(frame) local input = frame.args[1] or '' local delimiter = frame.args.delimiter or ',' local out = {} for token in string.gmatch(input, '([^'..delimiter..']+)') do token = trim(token) table.insert(out, string.format("{{Icon-TKC|%s}}", token)) end return table.concat(out) end return p"