Revision history of "Module:Is article"

Jump to navigation Jump to search

Diff selection: Mark the radio boxes 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.

  • curprev 01:52, 15 January 2022Tachyony talk contribs 661 bytes +661 Created page with "local p = {} local disambiguationTemplates = { "[Dd]isambiguation", "[Dd]isambig", "[Dd]isamb", "[Dd]ab", "[Ss]urname" } function p.main(frame) local getArgs = require('Module:Arguments').getArgs local args = getArgs(frame) title = args[1] page = mw.title.new(title, 0) if (not page) then return "badtitle" end if (not page.exists) then return "empty" end if (page.isRedirect) then return "redirect" end local content = page:getContent() if (co..."