Module:SS Medals: Difference between revisions
Jump to navigation
Jump to search
Content deleted Content added
No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
function p.getTitle(id) |
function p.getTitle(id) |
||
-- Load JSON data from the page "JoJo Wiki:SS Medals" |
-- Load JSON data from the page "JoJo Wiki:SS Medals" |
||
local jsonData = mw.loadJsonData('JoJo Wiki:SS Medals') |
local jsonData = mw.loadJsonData('JoJo Wiki:SS Medals') |
||
-- Parse JSON data |
-- Parse JSON data |
Revision as of 20:19, 2 June 2024
Documentation for this module may be created at Module:SS Medals/doc
local p = {}
function p.getTitle(id)
-- Load JSON data from the page "JoJo Wiki:SS Medals"
local jsonData = mw.loadJsonData('JoJo Wiki:SS Medals')
-- Parse JSON data
local data = mw.text.jsonDecode(jsonData)
-- Search for the entry with the given ID
for _, entry in ipairs(data) do
if entry.id == id then
return entry.title
end
end
return nil
end
return p