Module:R:NLW

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

This module needs documentation.
Please document this module by describing its purpose and usage on the documentation page.

local export = {}

--There are a small number (thirteen) of occurrences of the letter v in NLW: 
--
--These are simply omitted from this index.

function export.index(frame)
	local args = frame:getParent().args
	local w = args or mw.title.getCurrentTitle().text
	local w0 = string.gsub(string.gsub(string.gsub(string.gsub(w, "v", "u"), "V", "U"), "j", "i"), "J", "i")
    if (not args or args == "") and mw.title.getCurrentTitle().nsText == "Template" then
		return ""
	else
		local datW = require("Module:data tables").index_table("la_NLW_headwords_to_path", w)
		local datW0 = require("Module:data tables").index_table("la_NLW_headwords_to_path", w0)
		local hws = datW and datW or datW0 and datW0 or nil
		local u = (args or hws) and "http://www.neulatein.de/words/start2.htm?../words/"..(args or hws)..".htm " or nil
		return u and (" in ') or ""
	end
end

--note: the reason to include July 2016 as the default retrieval date is that 
--this website is regularly updated, and the headwords in Module:R:NLW/headwords
--were retrieved on this date.  The default date should be updated at the same
--time as the headwords list, and the citation should be altered to a book
--citation at the time of publication.
function export.format_date(frame)
	return frame:getParent().args or "16 July 2016"
end



return export