Module:qhv-adj/head

From Linguifex
Jump to navigation Jump to search

Documentation for this module may be created at Module:qhv-adj/head/doc

local export = {}

local m_p = require("Module:qhv-adj")
local m_d = require("Module:qhv-adj/data")
local PAGENAME = mw.title.getCurrentTitle().text

function export.fetch(degree, term)
	local word = term or PAGENAME
	local data = {forms = {}, categories = {}}
	local decl, stem = m_p.detect_decl(word)
	
	stem = {table.concat(stem), "a"}
	
	if m_d[word] then m_d[word](stem, data)
	else m_d[decl](stem, data) end
	
	return data.forms[degree]
end

return export