Module:Inventory: Revision history

From Archaelund 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.

23 March 2025

28 August 2023

27 August 2023

25 August 2023

  • curprev 18:5618:56, 25 August 2023MikeB talk contribs 496 bytes +496 Created page with "local Inventory = {} -- this module implements Template:Inventory local mArguments = require('Module:Arguments') function Inventory.Table(frame) local args = mArguments.getArgs(frame) local items = args['Inventory'] or '' local mark = args['Markup'] or 1 local itemTable = '' for itm in mw.text.gsplit(items,';',true) do itemTable = itemTable .. frame:expandTemplate{ title = string.format(':%s',itm), args = {'InventoryEntry', mark} } return itemTable end..."