Module:qay-noun: Difference between revisions

Jump to navigation Jump to search
no edit summary
No edit summary
No edit summary
 
Line 67: Line 67:
data.head = parent_args["head"] or word
data.head = parent_args["head"] or word
data.whole_word = parent_args["word"] and true or false
data.proper = parent_args["proper"] and true or false
data.proper = parent_args["proper"] and true or false
data.nocat = parent_args["nocat"] and true or false
data.nocat = parent_args["nocat"] and true or false
data.g = genders[g]
data.g = genders[g]
data.nopl = parent_args["nopl"] and true or false
data.nopl = parent_args["nopl"] and true or false
data.pt = parent_args["pt"] and true or false
data.pt = parent_args["pt"] and true or false --pluralia tantum
if data.proper then data.nopl = true end
if data.proper then data.nopl = true end
data.decl_type = decl_type
data.decl_type = decl_type
Line 104: Line 105:
local function link(term)
local function link(term)
local links = {}
local links = {}
for alt in gmatch(term, "([^%s,]+)") do
for alt in gmatch(term, "([^,]+)") do
alt = "[[Contionary:" .. alt .. "|" .. alt .. "]]"
alt = "[[Contionary:" .. alt .. "|" .. alt .. "]]"
table.insert(links, alt)
table.insert(links, alt)

Navigation menu