Module:Multi Infobox: Revision history

Jump to navigation Jump to search
Diff selection: mark the radio boxes of the versions to compare or click on a revision date to view it. (cur) = difference from current version, (prev) = difference from preceding version,  m = minor edit, → = section edit

17 October 2024

  • curprev 00:1200:12, 17 October 2024Alex talk contribs 482 bytes +482 Created page with "local p = {} function p.main(frame) local args = frame:getParent().args if not args['text1'] then return '' end local cur = args['text1']..'='..args['item1'] local i = 2 while args['text'..i] do cur = cur..'|-|'..args['text'..i]..'='..args['item'..i] i = i + 1 end local res = frame:callParserFunction{ name = '#tag', args = { 'Tabber', cur } } return '<div class="multi-infobox">'..res..'</div>' end r..."