Module:SimpleInfobox: 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.

3 July 2024

  • curprev 02:1702:17, 3 July 2024AdrianK talk contribs 374 bytes +374 Created page with "local p = {} function p.infobox(frame) local args = frame:getParent().args local name = args["name"] or "No name provided" local birth_date = args["birth_date"] or "No birth date provided" local occupation = args["occupation"] or "No occupation provided" return string.format("Name: %s\nBirth Date: %s\nOccupation: %s", name, birth_date, occupation) end return p"