Մոդուլ:Հայերենի բարբառներ
Արտաքին տեսք
Documentation for this module may be created at Մոդուլ:Հայերենի բարբառներ/doc
local data = mw.loadData("Մոդուլ:Հայերենի բարբառներ/տվյալներ")
local p = {}
function p.main( frame )
local s = ""
local title = mw.title.getCurrentTitle()
local pargs = frame:getParent().args
if title and title.namespace == 0 and not pargs["nocat"] then
for i,v in ipairs(pargs) do
if not data[v] == nil then
s = s .. data[v] .. ", "
end
end
s = s:sub(1, -4)
end
return s
end
return p