10,735
edits
No edit summary |
TheNightAvl (talk | contribs) mNo edit summary |
||
Line 21: | Line 21: | ||
["t"] = {}, | ["t"] = {}, | ||
["pos"] = {}, | ["pos"] = {}, | ||
} | |||
local list_params = { | |||
[1] = {list = true}, | |||
["alt"] = {}, | |||
} | } | ||
Line 44: | Line 49: | ||
gloss = args["t"], | gloss = args["t"], | ||
pos = args["pos"], | pos = args["pos"], | ||
} | |||
end | |||
function export.inflection_list(frame) | |||
local args = m_parameters.process(frame:getParent().args, inflection_params) | |||
return m_form_of.make_form_of{ | |||
inflection = args[1], | |||
alt = args["alt"], | |||
} | } | ||
end | end | ||
return export | return export |