Main public logs

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

Logs
  • 23:30, 27 January 2026 Pumpkin talk contribs created page Module:Invert italics (Created page with "local p = {} function p.main(frame) local text = frame.args[1] or "" local result = text local count = 0 while result:find("''") do if count % 2 == 0 then result = result:gsub("''", '<span style="font-style:normal;">', 1) else result = result:gsub("''", '</span>', 1) end count = count + 1 end return result end return p")