Jump to content

Main public logs

Combined display of all available logs of Parasol. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 20:16, 3 November 2023 Sebastian talk contribs created page Special:Badtitle/NS828:CSVIterator (Created page with "-- Module for iterating through CSV data local p = {} function p.iterateCSV(frame) local csv = frame.args[1] or "" local items = mw.text.split(csv, ",") local output = {} for i, item in ipairs(items) do table.insert(output, "* Item " .. i .. ": " .. item) end return table.concat(output, "\n") end return p") Tag: wikieditor