Module:Link list: Revision history

Jump to navigation Jump to search

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.

18 June 2024

10 June 2024

  • curprev 00:2700:27, 10 June 2024Xtex talk contribsm 369 bytes −4 No edit summary
  • curprev 00:2500:25, 10 June 2024Xtex talk contribs 373 bytes +373 Created page with "local p = {} -- generates a list like: "a, b and c" function p.listPages( f ) local args = require('Module:ProcessArgs').merge(true) local out = '' for index, value in ipairs(args) do if index == 1 then elseif index == #args then out = out .. ' and ' else out = out .. ', ' end out = out .. '' .. value .. '' end return out end return p"