মডিউল:নিঘর্ণ্ট ফাইলের এক্সটেনশন
এই মডিউলের জন্য মডিউল:নিঘর্ণ্ট ফাইলের এক্সটেনশন/নথি-এ নথিপত্র তৈরি করা হয়ে থাকতে পারে
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