Module:User:Kephir/test3

Hello, you have come here looking for the meaning of the word Module:User:Kephir/test3. In DICTIOUS you will not only get to know all the dictionary meanings for the word Module:User:Kephir/test3, but we will also tell you about its etymology, its characteristics and you will know how to say Module:User:Kephir/test3 in singular and plural. Everything you need to know about the word Module:User:Kephir/test3 you have here. The definition of the word Module:User:Kephir/test3 will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofModule:User:Kephir/test3, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.

Users who showed up in RecentChanges:


local export = {}

function export.get_active_users(frame)
	local users = {}
	
	local rc = mw.text.unstrip(frame:preprocess "{{safesubst:Special:RecentChanges|limit=3000|days=40|hidebots=1|hideanons=1|hidemyself=1|hideminor=0|hidepatrolled=0}}")

	for m in rc:gmatch('<span class="mw%-usertoollinks">.-<a href="https://dictious.com/en/Special:Contributions/(.-)"') do 
		users = true
	end
	
	local output = {}
	
	for user in pairs(users) do
		output = "* ]\n"
	end
	
	return table.concat(output)
end

return export