Module:Tabber: Revision history

From Snowpiercer Wiki

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 March 2024

  • curprev 17:3817:38, 18 March 2024Sprisa talk contribs 1,092 bytes +1,092 Created page with "local Tabber = {} --- Helper function to get Tabber length --- --- @param data table --- @return number local function getTabberLength( data ) local length = 0 for k, _ in next, data do if mw.ustring.find( k, 'label' ) == 1 then length = length + 1 end end return length end --- Render Tabber --- --- @param data table { label{n}, content{n} } --- @return string wikitext of Tabber function Tabber.renderTabber( data ) if..."