Module:columns/auto: 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.

11 September 2023

  • curprev 15:2915:29, 11 September 2023Sware talk contribs 838 bytes +838 Created page with "local export = {} function export.decide_number_of_columns(lang, number_of_items) if number_of_items <= 3 then return 1 elseif number_of_items <= 9 then return 2 elseif number_of_items <= 27 then return 3 elseif number_of_items <= 81 then return 4 else return 5 end end function export.display_from(column_args, list_args) if not column_args["columns"] then local m_table = require("Module:table") column_args = m_table.shallowcopy(column_args) local..."