Module:R:it:Olivetti

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

This module implements the reference template {{R:it:Olivetti}}.


local export = {}

function export.create(frame) 
	 local params = {
		 = {list = true, default = mw.title.getCurrentTitle().text},
		 = {list = true, allow_holes = true},
	}
	local args = require("Module:parameters").process(frame:getParent().args, params)

	local links = {}
	for i, term in ipairs(args) do
		if term == "+" then
			term = mw.title.getCurrentTitle().text
		end
		local alt = args.alt or term
		local url = "https://www.dizionario-italiano.it/dizionario-italiano.php?parola=" .. mw.uri.encode(term)
		table.insert(links, "")
	end
	local joined_links = table.concat(links, ", ")
	return joined_links .. " in ''Dizionario Italiano Olivetti'', Olivetti Media Communication"
end

return export