Module:Multi Infobox: 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.

    7 November 2022

    • curprev 17:4117:41, 7 November 2022Jacmob 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..."