Module:lfv-IPA/affixes

From Laenkea
Jump to navigation Jump to search

Data module for Laefevian affixes which inform automatic placement of secondary stress.


local prefixes = { --only for prefixes which engender secondary stress afterwards
	"añgi",
}

local suffixes = { --only for suffixes which engender secondary stress beforehand
	"sellens",
}

table.sort(prefixes, function(a, b) return a > b end)
table.sort(suffixes, function(a, b) return a > b end)

return {
	prefixes = prefixes,
	suffixes = suffixes
}