Modulo:ScritturaPronuncia: differenze tra le versioni
Contenuto cancellato Contenuto aggiunto
Nessun oggetto della modifica |
Annullata la modifica 415101 di Andyrom75 (discussione) evidentemente c'era un errore |
||
Riga 1:
local p = {}
function p.ScritturaPronuncia(frame)
local
local
if frame == mw.getCurrentFrame() then
args = frame:getParent().args
else
args = frame.args
if args[1] and args[1] ~= '' then
Scrittura = args[1]
end
if args[2] and args[2] ~= '' then
Pronuncia = args[2]
end
return '<span id="Scrittura">' .. Scrittura .. '</span> <span id="Pronuncia">' .. Pronuncia .. '</span>'
end
|