Jump to content

Module:Wikitable: Revision history


Here you can take a look at older versions of this page, and compare different versions.

  • Click the date to see an old version.
  • To compare two versions (changes), click the circles (in separate columns) next to them. Then click the Compare button to see the differences between them.
  • You can use (cur) to compare an old version with the newest (or current) one. You can use (last) to compare any version with the one just before it.
  • The letter m next to a change means that the change was marked as small (or minor).

6 August 2021

  • curlast 17:1417:14, 6 August 2021 MeritedElm63160 talk changes 515 bytes +515 Created page with "local p = {}; local getArgs = require('Module:Arguments').getArgs local buffer = require("Module:Buffer")('{|') function p.main(frame) local args = getArgs(frame, {removeBlanks=false, trim=false} ) for k, v in pairs(args) do if type(k) ~= 'number' then buffer:_(string.format(string.match(v, '^["\']') and ' %s=%s' or ' %s="%s"', k, v)) end end buffer:_'\n' for _, v in ipairs(args) do if not string.match(v, '^!') then buffer:_'|' end buffer:_(v) end return ta..."