Module:R:jam:Jamaicans

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

This module implements {{R:jam:Jamaicans}}.


local exports = {}

local lang = require("Module:languages").getByCode("jam")
local PAGENAME = mw.title.getCurrentTitle().text

-- The main entry point.
-- This is the only function that can be invoked from a template.
function exports.create(frame) 
    
    local query = PAGENAME
    local strippedTerm = mw.ustring.toNFD(query)
        :gsub("", "")  -- strip combining diacritical marks, U+0300-U+036F
        :gsub(' ', '-')
	local encodedTerm = mw.uri.encode(strippedTerm) .. ".html"
	local title = query
    
    -- see https://en.wiktionary.orghttps://dictious.com/en/Wiktionary:References
    local output = " " ..
        "– jamaicans.com Jamaican Patois dictionary"

    return output
end

return exports