Module:Invert italics: Revision history

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.

(newest | oldest) View ( | older 50) (20 | 50 | 100 | 250 | 500)

27 January 2026

  • curprev 23:3023:30, 27 January 2026 Pumpkin talk contribs 412 bytes +412 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"
(newest | oldest) View ( | older 50) (20 | 50 | 100 | 250 | 500)