Main public logs
Combined display of all available logs of WikiProducers. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 08:40, 16 August 2025 Eddymunoz talk contribs created page Module:CSVExport (Created page with "local p = {} local function q(s) if not s then return '' end s = tostring(s) if s:find('[,\n"]') then s = '"' .. s:gsub('"','""') .. '"' end return s end function p.dataURI(frame) local a = frame:getParent().args local header = 'Name,Title,Organization,Phone,Email,Website,Street,City,State,ZIP,Country,LinkedIn,Instagram,X' local row = table.concat({ q(a.name), q(a.title), q(a.org), q(a.phone), q(a.email), q(a.website), q(a.street), q(a.city), q(a....")