Module:languages/JSON
Jump to navigation
Jump to search
- The following documentation is located at Module:languages/JSON/documentation. [edit]
- Useful links: root page • root page’s subpages • links • transclusions • testcases • sandbox
Converts language data to JSON.
The data can be fetched using an expand templates API call, e.g. [1]
local export = {}
function export.getByCode(frame)
local args = frame.args
local langcode = args[1] or error("Language code has not been specified. Please pass parameter 1 to the module invocation.")
local lang = require("Module:languages").getByCode(langcode) or error("Language code not found")
return lang:toJSON()
end
return export