Module:uses lua

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


local export = {}

local concat = table.concat
local ipairs = ipairs
local process_params = require("Module:parameters").process

function export.show(frame)
	local titles = process_params(frame:getParent().args, {
		 = {required = true, type = "title", list = true, namespace = 828}
	})

	for i, mod in ipairs(titles) do
		titles = ("<li>]</li>"):format(mod.fullText)
	end
	
	return (]<div>Uses ]:<ul>%s</ul></div></div>]===]):format(concat(titles))
end

return export