Module:παραπομπές
Documentation for this module may be created at Module:παραπομπές/τεκμηρίωση
export = {}
local Ld = {}
Ld['γλώσσες'] = mw.loadData("Module:Languages")
Ld['σφάλμα'] = {}
Ld['σφάλμα']['αρχή'] = '<span style="color:red">'
Ld['σφάλμα']['τέλος'] = '</span>[[Κατηγορία:Σελίδες με προβλήματα στις παραπομπές]]'
export['δημιουργία παραπομπής σε λήμμα'] = function(lemma,langiso)
mw.log( 'lemma,langiso' .. lemma .. langiso)
output = ''
if (lemma or '') == '' then
return Ld['σφάλμα']['αρχή'] .. 'Δεν δόθηκε η λέξη.' .. Ld['σφάλμα']['τέλος']
end
output = "[[".. lemma
if langiso ~= '' then
local linkto = Ld['γλώσσες'][langiso]['link'] or ''
if linkto ~= '' then
output = output .. "#" .. linkto .. "|" .. lemma .. "]]"
else
output = output .. "]]"
end
else
output = output .. "]]"
end
return output
end
return export