Hello, you have come here looking for the meaning of the word
Module:gender and number/basic. In DICTIOUS you will not only get to know all the dictionary meanings for the word
Module:gender and number/basic, but we will also tell you about its etymology, its characteristics and you will know how to say
Module:gender and number/basic in singular and plural. Everything you need to know about the word
Module:gender and number/basic you have here. The definition of the word
Module:gender and number/basic will help you to be more precise and correct when speaking or writing your texts. Knowing the definition of
Module:gender and number/basic, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.
local export = {}
--[=[
This is a simplified version of ] that handles the most common
cases without loading the full module.
]=]--
function export.format_list(specs, lang, pos_for_cat, sort_key)
local gender, spec
if not pos_for_cat and not sort_key and #specs == 1 and type(specs) == "string" then
spec = specs
if spec == "m" then
gender = "masculine"
elseif spec == "f" then
gender = "feminine"
elseif spec == "n" then
gender = "neuter"
elseif spec == "c" then
gender = "common"
end
end
if gender then
return '<span class="gender"><abbr title="' .. gender .. ' gender">' .. spec .. '</abbr></span>'
end
return require("Module:gender and number").format_list(specs, lang, pos_for_cat, sort_key)
end
return export