Module:Correct title categories: 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.

14 July 2024

  • curprev 16:1816:18, 14 July 2024U9000 talk contribs 1,286 bytes +1,286 Created page with "local p = {} function p.main(frame) return p._main(frame.args[1]) end function p._main(title) title = mw.text.unstripNoWiki(title) -- Decode HTML entities unless the title itself is demonstrating one if title:sub(1, 1) ~= "&" then title = mw.text.decode(title) end title = title:gsub("'","") -- Add a trailing "a" to distinguish empty from no fragment local titleObj = mw.title.new(title.."a") if not titleObj or title == "/." then if title:find("%[") or title:f..."