Module:R:Duden

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

This module implements {{R:Duden}}.


local export = {}
 
local chart = { ='ae', ='oe', ='ue',
                ='Ae', ='Oe', ='Ue',
                ='sz', ='_',  ='_', 
                ='_' }

function export.create(frame)

   local params = {
		 = {},
		 = {},
		 = {alias_of = 2},
	}
	local args = require("Module:parameters").process(frame:getParent().args, params)

	local title = args or mw.title.getCurrentTitle().text
	local termURLCode = args or mw.ustring.gsub(title,'.',chart)
	local link = ""
	if termURLCode == '' then
		link = "''Duden'' online"
	else
		link = "“” in ''Duden'' online"
	end
	return link
end
 
return export