وحدة:Import style
من أرابيكا، الموسوعة العربية الحرة
المزيد من اللغات
المزيد من الإجراءات
local p = {}
function p.main()
out = ''
for _, style in ipairs(mw.getCurrentFrame():getParent().args) do
out = out .. mw.getCurrentFrame():extensionTag(
'templatestyles',
'',
{
src = 'Import style/' .. style .. '.css'
}
)
end
return out
end
return p