Vejatz lo contengut

Mòdul:Modèl

Un article de Wikipèdia, l'enciclopèdia liura.

La documentacion d'utilizacion d'aquel modul se pòt crear a Mòdul:Modèl/ús

 
-- lua module for the {{tl}} template to extract names parameters

-- module lua pour le [[modèle:m]] en particulier, lui permettant de recuperer les paramètres nommés.
-- (originellement cree sur le Wiki Wikidata par l'importeur initial)
 
p = {}
 
p.format_named_parameters = function(frame)
	local args = ""
	for key, arg in pairs(frame.args) do
		if type(key) ~= "number" then 
			args = args .. "\|" .. tostring(key) .. "=" .. tostring(arg)
		end
	end
 
	return args
end
 
p.format_pname_parameters = function(frame)
	return p.format_named_parameters ( frame:getParent())
end
 
return p