Modul:Tab-predl
Izgled
local p = {}
function p.main(frame)
local template = mw.getCurrentFrame():getParent().args[1]
template = frame:preprocess('{{lcfirst:'..template..'}}');
template = template:gsub( "infookvir ", "")
local nazivKategorije = mw.title.new('Nedostaje infookvir ' .. template, 14 ) -- NS Kategorija
local title = mw.title.getCurrentTitle().text
if nazivKategorije.exists then
return '[[Kategorija:Nedostaje infookvir ' .. template .. '|' .. title .. ']]'
else
return '[[Kategorija:Nedostaje infookvir|' .. template .. title .. ']]'
end
end
return p