Jump to content

Module:InfoboxTools: 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 July 2026

  • curprev 14:5314:53, 9 July 2026 NonaSoft talk contribs 504 bytes +504 Created page with "local p = {} p.builder = function(frame) local data = frame.args[1] --[[ == EXAMPLE SYNTAX == name,image,heading["General Information"],param["This", "that"] heavily tba ]] local out = "{{Infobox|" local current = "" local i = 0 while i <= data.len() do i = i + 1 if data[i] == ","then -- SYNTAX RUN if current == "name" then out = out + "{{InfoboxTitle|{{{name|}}}|{{{namecaption|}}}}}" end else current = current + data[i] end end..."