Jump to content

Module:Data

From Apogea Wiki
Revision as of 22:42, 31 January 2026 by Dane (talk | contribs) (Create Data module for capturing template output while discarding visible content (via create-page on MediaWiki MCP Server))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:Data/doc

local p = {}

function p.capture(frame)
    -- Accessing frame.args[1] forces template expansion
    -- Side effects (Cargo storage, Lua state) still happen
    local _ = frame.args[1]
    return ""
end

return p