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:39, 16 August 2025 Eddymunoz talk contribs created page Module:VCard (Created page with "local p = {} local function esc(s) if not s or s == '' then return nil end s = tostring(s) s = s:gsub("\\","\\\\"):gsub("\n","\\n"):gsub(",","\\,"):gsub(";","\\;") return s end local function line(label, value) if value and value ~= '' then return label .. ':' .. value end return nil end function p._vcard(a) local L = {} table.insert(L, 'BEGIN:VCARD') table.insert(L, 'VERSION:3.0') table.insert(L, line('FN', esc(a.name))) table.insert(L, line('OR...")