Module:fi-colonlink

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


local export = {}

function export.link(frame)
	local lang = require("Module:languages").getByCode("fi")
	local sc = require("Module:scripts").getByCode("Latn")

	local text = frame:getParent().args or error("Argument 1 is required")
	local ok, _, wllang = mw.ustring.find(text, "^(%a-):")
	
	if ok and mw.site.interwikiMap("local") then
		return require("Module:links").full_link{
			term = "Unsupported titles/" .. text,
			alt = text,
			lang = lang,
			sc = sc
		}
	end
	return require("Module:links").full_link{
		term = text,
		lang = lang,
		sc = sc
	}
end

return export