模組:Form of/lang-data/pi
--[=[
This module contains lang-specific tags for Pali.
]=]
local tags = {}
local shortcuts = {}
local base_lemma_params = {
{
param = "caus-of",
tags = {"caus"},
},
}
----------------------- Create the shortcuts list -----------------------
for name, data in pairs(tags) do
if data.shortcuts then
for _, shortcut in ipairs(data.shortcuts) do
shortcuts[shortcut] = name
end
end
end
return {tags = tags, shortcuts = shortcuts, base_lemma_params = base_lemma_params}