47,697
edits
![]() | We're back! Sorry, bad combo of sickness, funeral and a month-long trip abroad. The site is back now. ![]() |
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, "([^ | for alt in gmatch(term, "([^,]+)") do | ||
alt = "[[Contionary:" .. alt .. "|" .. alt .. "]]" | alt = "[[Contionary:" .. alt .. "|" .. alt .. "]]" | ||
table.insert(links, alt) | table.insert(links, alt) |