Combined display of all available logs of SuperCombo Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 22:10, 11 May 2025 Emerald3ME talk contribs created page Module:T7/ComboRow (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")