Module:Infobox/Widget/List: Revision history

From TwogPedia

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.

29 September 2023

13 June 2023

24 October 2022

30 August 2022

  • curprev 16:4516:45, 30 August 2022Couchor talk contribs 479 bytes −12 No edit summary
  • curprev 16:4216:42, 30 August 2022Couchor talk contribs 491 bytes +491 Created page with "local List = {} function List.make(arr) local container = mw.html.create('div') local sponsorList = mw.text.split(arr, ',') for i, v in ipairs(sponsorList) do v = mw.text.trim(v) local pageExists = mw.getCurrentFrame():callParserFunction('#ifexist', v, 'yes', 'no' ) local div = mw.html.create('div') if ( pageExists == 'yes' ) then div:wikitext('' .. v .. '') else div:wikitext(v) end container:node(div) end return container e..."