Mòdul:Partit polític
Aparença
Podeu crear la pàgina d'ús per documentar aquest mòdul Lua. |
local p = {}
function p._fetch(args)
if not args[1] then
return args.error
end
if not args[2] then
return args.error
end
local party = args[1]
local out_type = args[2]
local return_value = ''
-- Load data from wikidata
if out_type == "color" then
color = require("Module:Wikidades").claim{item=party, property="P465", lang="ca", list=false, editicon=false, default="#999999"}
return_value = string.format("#%s", color)
end
return return_value
end
function p.fetch(frame)
-- Initialise and populate variables
local getArgs = require("Module:Arguments").getArgs
local args = getArgs(frame)
return p._fetch(args)
end
return p