Module:R:it:DOP

Hello, you have come here looking for the meaning of the word Module:R:it:DOP. In DICTIOUS you will not only get to know all the dictionary meanings for the word Module:R:it:DOP, but we will also tell you about its etymology, its characteristics and you will know how to say Module:R:it:DOP in singular and plural. Everything you need to know about the word Module:R:it:DOP you have here. The definition of the word Module:R:it:DOP will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofModule:R:it:DOP, 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:DOP}}.


local export = {}

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

	local links = {}
	for i, id in ipairs(args) do
		local lemma = args.lemma or "+"
		if lemma == "+" then
			lemma = mw.title.getCurrentTitle().text
		end
		-- URL's generated by searching have a separate numeric rID= in them but that isn't necessary to get to the lemma.
		local url = "https://dizionario.rai.it/p.aspx?nID=lemma&lID=" .. id
		table.insert(links, "")
	end
	local joined_links = table.concat(links, ", ")
	return joined_links .. " in ] et al., ''Dizionario d'ortografia e di pronunzia'', Rai Eri, 2007"
end

return export