বিষয়বস্তুতে চলুন

মডিউল:ব্যবহারকারী স্ক্রিপ্টের ছকের সারি/উপাত্ত

উইকিপিডিয়া, মুক্ত বিশ্বকোষ থেকে
মডিউল নথি[তৈরি করুন]
local source = mw.title.new('উইকিপিডিয়া:ব্যবহারকারী স্ক্রিপ্ট/সর্বাধিক আমদানিকৃত স্ক্রিপ্ট'):getContent()
local t = {}

for script, total, active in mw.ustring.gmatch(source, '\n%| %[%[([^%]]+)%]%] -\n%| (%d+) -\n%| (%d+)') do
	t[script] = { total = tonumber(total), active = tonumber(active) }
end

return t