Module:Station: Difference between revisions

From Nguhcraft Wiki
Jump to navigation Jump to search
Biangfox (talk | contribs)
No edit summary
Biangfox (talk | contribs)
No edit summary
Line 5: Line 5:


p.yes = function(frame)
p.yes = function(frame)
return printTable(data)
return tostring(data)
end
end



Revision as of 06:14, 11 January 2026

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

local p = {}

-- Load JSON data
local data = mw.loadJsonData("Data:Cenrail_Network")

p.yes = function(frame)
	return tostring(data)
end

p.found = function(frame) 
end

return p