Module:CSVExport: Revision history

From WikiProducers

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.

16 August 2025

  • curprev 08:4008:40, 16 August 2025 Eddymunoz talk contribs 656 bytes +656 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...."