Jump to content

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.

31 January 2026

  • curprev 06:2006:20, 31 January 2026 Inari talk contribs 1,390 bytes +1,390 Created page with "local p = {} function p.main(frame) local args = frame:getParent().args if args.nocat == "1" or args.nocat == "yes" then return "" end 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 tit..."