Jump to content

This site is currently in alpha, so you will run into rough edges.

Please send feedback or ideas to connect@deeptech.wiki

Module:InfoboxMinimal: Revision history

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.

9 November 2025

  • curprev 06:5006:50, 9 November 2025 C talk contribs 2,327 bytes +1,088 No edit summary
  • curprev 06:2506:25, 9 November 2025 C talk contribs 1,239 bytes −188 No edit summary
  • curprev 06:0006:00, 9 November 2025 C talk contribs 1,427 bytes +282 No edit summary
  • curprev 05:5205:52, 9 November 2025 C talk contribs 1,145 bytes +1,145 Created page with "-- Module:InfoboxMinimal local p = {} local function isBlank(s) if s == nil then return true end s = tostring(s) return mw.text.trim(s) == '' end local function addRow(tbl, label, data) if isBlank(data) then return end local tr = tbl:tag('tr') tr:tag('th') :attr('scope', 'row') :addClass('infobox-label') :wikitext(label or '') tr:tag('td') :addClass('infobox-data') :wikitext(data) end function p.infobox(frame) -- Prefer parent args so wrapper templat..."