Module:সূচী ফাইলৰ এক্সটেনচন

ৱিকিউৎসৰ পৰা

Documentation for this module may be created at Module:সূচী ফাইলৰ এক্সটেনচন/doc

local p={}

function p.test(frame) 
	local title=mw.title.getCurrentTitle()
	local result=""
	-- If we are on an Index page
	if title.namespace==102 then
		if string.find(string.lower(title.text),"%.djvu")~=nil then
			result="[[শ্ৰেণী:দেজাভু সূচী পৃষ্ঠা]]"
		end
		if string.find(string.lower(title.text),"%.pdf")~=nil then
			result="[[শ্ৰেণী:পিডিএফ সূচী পৃষ্ঠা]]"
		end
	end
	return result
end
return p