Module:R:Cunliffe

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

Generates the entry link for {{R:Cunliffe}}.


local export = {}

function load_data(w)
    --return mw.loadData("Module:R:Cunliffe/data")
	return require("Module:data tables").index_table("grc_RCunliffe_lemma_to_index", w)
end

function export.index(frame)
	local args = frame:getParent().args
	local title = args or args or mw.title.getCurrentTitle().text
	local title_span = '<span class="Polyt" lang="grc">' .. title .. '</span>'
	
	local eid = args.eid
	if not eid then
		local n = load_data(title)
		eid = n and n
	end
	
	if eid then
		return (" in ")
	else
		-- ]
		require("Module:debug").track("R:Cunliffe/no-entry")
		return '<span class="previewonly" style="font-size: 75%;">(no entry for the specified headword)</span> '
	end
end

return export